aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag/Riff.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/tag/Riff.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 '')
-rw-r--r--src/tag/Riff.cxx11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/tag/Riff.cxx b/src/tag/Riff.cxx
index 3d022e661..d756ebc30 100644
--- a/src/tag/Riff.cxx
+++ b/src/tag/Riff.cxx
@@ -19,6 +19,8 @@
#include "config.h" /* must be first for large file support */
#include "Riff.hxx"
+#include "util/Domain.hxx"
+#include "Log.hxx"
#include <glib.h>
@@ -26,11 +28,9 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
-#include <errno.h>
#include <string.h>
-#undef G_LOG_DOMAIN
-#define G_LOG_DOMAIN "riff"
+static constexpr Domain riff_domain("riff");
struct riff_header {
char id[4];
@@ -50,15 +50,14 @@ riff_seek_id3(FILE *file)
struct stat st;
if (fstat(fileno(file), &st) < 0) {
- g_warning("Failed to stat file descriptor: %s",
- g_strerror(errno));
+ LogErrno(riff_domain, "Failed to stat file descriptor");
return 0;
}
/* seek to the beginning and read the RIFF header */
if (fseek(file, 0, SEEK_SET) != 0) {
- g_warning("Failed to seek: %s", g_strerror(errno));
+ LogErrno(riff_domain, "Failed to seek");
return 0;
}