diff options
author | Max Kellermann <max@duempel.org> | 2008-11-21 20:13:00 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-21 20:13:00 +0100 |
commit | 0243e1e26debfc9c0034c54dd56b9e3701404b0e (patch) | |
tree | c40a98feb6153c5289484b2a048630953025f3bc /src/log.c | |
parent | 1c0c583216c3fd7dd638f504bc32d2cb0a7b2f95 (diff) | |
download | mpd-0243e1e26debfc9c0034c54dd56b9e3701404b0e.tar.gz mpd-0243e1e26debfc9c0034c54dd56b9e3701404b0e.tar.xz mpd-0243e1e26debfc9c0034c54dd56b9e3701404b0e.zip |
log: print the log_domain
Diffstat (limited to '')
-rw-r--r-- | src/log.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -67,7 +67,7 @@ static const char *log_date(void) } static void -mpd_log_func(G_GNUC_UNUSED const gchar *log_domain, +mpd_log_func(const gchar *log_domain, G_GNUC_UNUSED GLogLevelFlags log_level, const gchar *message, G_GNUC_UNUSED gpointer user_data) { @@ -87,8 +87,12 @@ mpd_log_func(G_GNUC_UNUSED const gchar *log_domain, } else converted = NULL; - fprintf(file, "%s%s", + if (log_domain == NULL) + log_domain = ""; + + fprintf(file, "%s%s%s%s", stdout_mode ? "" : log_date(), + log_domain, *log_domain == 0 ? "" : ": ", message); g_free(converted); |