diff options
author | Max Kellermann <max@duempel.org> | 2008-12-29 17:35:42 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-12-29 17:35:42 +0100 |
commit | 6517126204f8eef363a65868ab97473916bd167e (patch) | |
tree | df212010fbf4166180fbce05083371295f5f8257 /src/log.h | |
parent | 91be85a3076fe934f9faf7fb3c9e635a394ccfe7 (diff) | |
download | mpd-6517126204f8eef363a65868ab97473916bd167e.tar.gz mpd-6517126204f8eef363a65868ab97473916bd167e.tar.xz mpd-6517126204f8eef363a65868ab97473916bd167e.zip |
log: removed unused logging wrappers
Removed GLib logging wrappers which are not used anymore.
Diffstat (limited to 'src/log.h')
-rw-r--r-- | src/log.h | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -22,11 +22,7 @@ #include <glib.h> #include <stdbool.h> -G_GNUC_PRINTF(1, 2) void ERROR(const char *fmt, ...); -G_GNUC_PRINTF(1, 2) void LOG(const char *fmt, ...); -G_GNUC_PRINTF(1, 2) void SECURE(const char *fmt, ...); G_GNUC_PRINTF(1, 2) void DEBUG(const char *fmt, ...); -G_GNUC_PRINTF(1, 2) void WARNING(const char *fmt, ...); G_GNUC_PRINTF(1, 2) G_GNUC_NORETURN void FATAL(const char *fmt, ...); void log_init(bool verbose, bool use_stdout); |