aboutsummaryrefslogtreecommitdiffstats
path: root/src/ExcludeList.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-09-27 22:31:24 +0200
committerMax Kellermann <max@duempel.org>2013-10-02 08:57:55 +0200
commit060814daa83f6a94f5934464ae42a406c5c7e947 (patch)
treef636ec6cdbb8e52fda6db987d2a28fc73c7b94b4 /src/ExcludeList.cxx
parentc53492a76a8a05825e1c7f699c05645eee891199 (diff)
downloadmpd-060814daa83f6a94f5934464ae42a406c5c7e947.tar.gz
mpd-060814daa83f6a94f5934464ae42a406c5c7e947.tar.xz
mpd-060814daa83f6a94f5934464ae42a406c5c7e947.zip
Log: new logging library API
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend.
Diffstat (limited to 'src/ExcludeList.cxx')
-rw-r--r--src/ExcludeList.cxx14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/ExcludeList.cxx b/src/ExcludeList.cxx
index ed04b8d38..16bdbf383 100644
--- a/src/ExcludeList.cxx
+++ b/src/ExcludeList.cxx
@@ -1,3 +1,4 @@
+
/*
* Copyright (C) 2003-2011 The Music Player Daemon Project
* http://www.musicpd.org
@@ -26,21 +27,26 @@
#include "ExcludeList.hxx"
#include "fs/Path.hxx"
#include "fs/FileSystem.hxx"
+#include "util/Domain.hxx"
+#include "Log.hxx"
#include <assert.h>
#include <string.h>
#include <errno.h>
+static constexpr Domain exclude_list_domain("exclude_list");
+
bool
ExcludeList::LoadFile(const Path &path_fs)
{
FILE *file = FOpen(path_fs, FOpenMode::ReadText);
if (file == NULL) {
- if (errno != ENOENT) {
- const char *msg = g_strerror(errno);
+ const int e = errno;
+ if (e != ENOENT) {
const auto path_utf8 = path_fs.ToUTF8();
- g_debug("Failed to open %s: %s",
- path_utf8.c_str(), msg);
+ FormatErrno(exclude_list_domain,
+ "Failed to open %s",
+ path_utf8.c_str());
}
return false;