Commit 4c967a6b authored by Max Kellermann's avatar Max Kellermann

log: provide a GLib logging handler

Install a default handler which writes to stdout or stderr, and prepends a time stamp. This looks just like the 0.13.x logger.
parent a5348a37
......@@ -64,10 +64,25 @@ static const char *log_date(void)
return buf;
}
static void
mpd_log_func(G_GNUC_UNUSED const gchar *log_domain,
G_GNUC_UNUSED GLogLevelFlags log_level,
const gchar *message, G_GNUC_UNUSED gpointer user_data)
{
FILE *file = log_level <= G_LOG_LEVEL_WARNING
? stderr : stdout;
fprintf(file, "%s%s",
stdout_mode ? "" : log_date(),
message);
}
void initLog(const int verbose)
{
ConfigParam *param;
g_log_set_default_handler(mpd_log_func, NULL);
/* unbuffer stdout, stderr is unbuffered by default, leave it */
setvbuf(stdout, (char *)NULL, _IONBF, 0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment