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/visit_archive.cxx | |
parent | 64e898f6dbcfe5e584cb308dd3eca411bfd7667d (diff) |
test/*: remove GLib logging setup
Obsolete, our logging library doesn't ues GLib anymore.
Diffstat (limited to 'test/visit_archive.cxx')
-rw-r--r-- | test/visit_archive.cxx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/test/visit_archive.cxx b/test/visit_archive.cxx index 6e66c4696..bd890de4f 100644 --- a/test/visit_archive.cxx +++ b/test/visit_archive.cxx @@ -35,16 +35,6 @@ #include <unistd.h> #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); -} - class MyArchiveVisitor final : public ArchiveVisitor { public: virtual void VisitArchiveEntry(const char *path_utf8) override { @@ -71,8 +61,6 @@ main(int argc, char **argv) g_thread_init(NULL); #endif - g_log_set_default_handler(my_log_func, NULL); - /* initialize MPD */ config_global_init(); |