diff options
author | Max Kellermann <max@duempel.org> | 2009-03-15 18:23:00 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-15 18:23:00 +0100 |
commit | a899c210b9de405a232f0cd102ca9409ef89518b (patch) | |
tree | 3b42f6d527cb92c8f1c3c1592541511ce14d283d /src/sig_handlers.c | |
parent | 9e30dfb9c195dab50c4d0173885a94e7b81d45bd (diff) | |
download | mpd-a899c210b9de405a232f0cd102ca9409ef89518b.tar.gz mpd-a899c210b9de405a232f0cd102ca9409ef89518b.tar.xz mpd-a899c210b9de405a232f0cd102ca9409ef89518b.zip |
log: removed DEBUG() and FATAL()
Use GLib the logging functions g_debug(), g_error() instead.
Diffstat (limited to '')
-rw-r--r-- | src/sig_handlers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sig_handlers.c b/src/sig_handlers.c index c42f0b169..e70e1a159 100644 --- a/src/sig_handlers.c +++ b/src/sig_handlers.c @@ -51,7 +51,7 @@ x_sigaction(int signum, const struct sigaction *act) static void handle_reload_event(void) { - DEBUG("got SIGHUP, rereading DB\n"); + g_debug("got SIGHUP, reopening log files"); cycle_log_files(); } |