aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/wslog.c
diff options
context:
space:
mode:
Diffstat (limited to 'wsutil/wslog.c')
-rw-r--r--wsutil/wslog.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/wsutil/wslog.c b/wsutil/wslog.c
index 47d6227d7d..9f53ce519c 100644
--- a/wsutil/wslog.c
+++ b/wsutil/wslog.c
@@ -84,8 +84,9 @@ static gboolean stdout_color_enabled = FALSE;
static gboolean stderr_color_enabled = FALSE;
-/* Use stderr for levels "info" and below. */
-static gboolean stderr_debug_enabled = FALSE;
+/* Use stdout for levels "info" and below, for backward compatibility
+ * with GLib. */
+static gboolean stdout_logging_enabled = FALSE;
static const char *registered_progname = DEFAULT_PROGNAME;
@@ -929,7 +930,7 @@ static inline struct tm *get_localtime(time_t unix_time, struct tm **cookie)
static inline FILE *console_file(enum ws_log_level level)
{
- if (level <= LOG_LEVEL_INFO && !stderr_debug_enabled)
+ if (level <= LOG_LEVEL_INFO && stdout_logging_enabled)
return stdout;
return stderr;
}
@@ -937,7 +938,7 @@ static inline FILE *console_file(enum ws_log_level level)
static inline bool console_color_enabled(enum ws_log_level level)
{
- if (level <= LOG_LEVEL_INFO && !stderr_debug_enabled)
+ if (level <= LOG_LEVEL_INFO && stdout_logging_enabled)
return stdout_color_enabled;
return stderr_color_enabled;
}
@@ -1098,9 +1099,9 @@ void ws_log_console_writer(const char *domain, enum ws_log_level level,
WS_DLL_PUBLIC
-void ws_log_console_writer_set_use_stderr(bool use_stderr)
+void ws_log_console_writer_set_use_stdout(bool use_stdout)
{
- stderr_debug_enabled = use_stderr;
+ stdout_logging_enabled = use_stdout;
}