diff options
author | Max Kellermann <max@duempel.org> | 2013-12-24 14:13:03 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-12-24 14:13:03 +0100 |
commit | 8064bbbc3f3d3bac50a9cd972106479fd32917cc (patch) | |
tree | a9faedf1fc734ca5919b0216d5302c949e4fea28 /test/dump_text_file.cxx | |
parent | 64e898f6dbcfe5e584cb308dd3eca411bfd7667d (diff) | |
download | mpd-8064bbbc3f3d3bac50a9cd972106479fd32917cc.tar.gz mpd-8064bbbc3f3d3bac50a9cd972106479fd32917cc.tar.xz mpd-8064bbbc3f3d3bac50a9cd972106479fd32917cc.zip |
test/*: remove GLib logging setup
Obsolete, our logging library doesn't ues GLib anymore.
Diffstat (limited to 'test/dump_text_file.cxx')
-rw-r--r-- | test/dump_text_file.cxx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/test/dump_text_file.cxx b/test/dump_text_file.cxx index bb84f5cce..dd0cba0f2 100644 --- a/test/dump_text_file.cxx +++ b/test/dump_text_file.cxx @@ -39,16 +39,6 @@ #include <stdlib.h> static void -my_log_func(const gchar *log_domain, gcc_unused GLogLevelFlags log_level, - const gchar *message, gcc_unused gpointer user_data) -{ - if (log_domain != NULL) - g_printerr("%s: %s\n", log_domain, message); - else - g_printerr("%s\n", message); -} - -static void dump_text_file(TextInputStream &is) { std::string line; @@ -109,8 +99,6 @@ int main(int argc, char **argv) g_thread_init(NULL); #endif - g_log_set_default_handler(my_log_func, NULL); - /* initialize MPD */ config_global_init(); |