log: removed DEBUG() and FATAL()

Use GLib the logging functions g_debug(), g_error() instead.
This commit is contained in:
Max Kellermann
2009-03-15 18:23:00 +01:00
parent 9e30dfb9c1
commit a899c210b9
9 changed files with 22 additions and 49 deletions

View File

@@ -29,7 +29,6 @@
#include "tag.h"
#include "mapper.h"
#include "path.h"
#include "log.h"
#include "uri.h"
#include <glib.h>
@@ -269,5 +268,5 @@ void decoder_thread_start(void)
dc.thread = g_thread_create(decoder_task, NULL, true, &e);
if (dc.thread == NULL)
FATAL("Failed to spawn decoder task: %s\n", e->message);
g_error("Failed to spawn decoder task: %s", e->message);
}