Log: new logging library API

Prepare to migrate away from GLib.  Currently, we're still using GLib
as a backend.
This commit is contained in:
Max Kellermann
2013-09-27 22:31:24 +02:00
parent c53492a76a
commit 060814daa8
162 changed files with 1992 additions and 1280 deletions

View File

@@ -29,15 +29,13 @@
#include "tag/TagSettings.h"
#include "fs/Path.hxx"
#include "util/Error.hxx"
#include "Log.hxx"
#include <glib.h>
#include <assert.h>
#include <stdlib.h>
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "database"
#define DIRECTORY_INFO_BEGIN "info_begin"
#define DIRECTORY_INFO_END "info_end"
#define DB_FORMAT_PREFIX "format: "
@@ -155,7 +153,7 @@ db_load_internal(TextFile &file, Directory *music_root, Error &error)
}
}
g_debug("reading DB");
LogDebug(db_domain, "reading DB");
db_lock();
success = directory_load(file, music_root, error);