mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-28 15:40:23 +08:00
Restore function of CS_DISABLE_STDIO
PUBLISHED_FROM=99c1c7a8cfcb84d283e4ed712f4da6879c41209c
This commit is contained in:
parent
dc6b44571f
commit
7564623d46
@ -372,6 +372,11 @@ void cs_log_printf(const char *fmt, ...) {
|
||||
fputc('\n', cs_log_file);
|
||||
fflush(cs_log_file);
|
||||
}
|
||||
|
||||
void cs_log_set_file(FILE *file) {
|
||||
cs_log_file = file;
|
||||
}
|
||||
|
||||
#endif /* !CS_DISABLE_STDIO */
|
||||
|
||||
void cs_log_set_level(enum cs_log_level level) {
|
||||
@ -380,10 +385,6 @@ void cs_log_set_level(enum cs_log_level level) {
|
||||
cs_log_ts = cs_time();
|
||||
#endif
|
||||
}
|
||||
|
||||
void cs_log_set_file(FILE *file) {
|
||||
cs_log_file = file;
|
||||
}
|
||||
#ifdef MG_MODULE_LINES
|
||||
#line 1 "./src/../../common/cs_dirent.c"
|
||||
#endif
|
||||
|
@ -32,6 +32,8 @@
|
||||
#endif
|
||||
#if defined(MG_DISABLE_STDIO) && !defined(CS_DISABLE_STDIO)
|
||||
#define CS_DISABLE_STDIO
|
||||
#elif defined(CS_DISABLE_STDIO) && !defined(MG_DISABLE_STDIO)
|
||||
#define MG_DISABLE_STDIO
|
||||
#endif
|
||||
|
||||
/* All of the below features depend on filesystem access, disable them. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user