diff options
Diffstat (limited to 'src/log.c')
-rw-r--r-- | src/log.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -75,6 +75,9 @@ mpd_log_func(G_GNUC_UNUSED const gchar *log_domain, ? stderr : stdout; char *converted; + if (log_level > (int)log_threshold) + return; + if (log_charset != NULL) { converted = g_convert_with_fallback(message, -1, log_charset, "utf-8", |