aboutsummaryrefslogtreecommitdiffstats
path: root/src/PlayerThread.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/PlayerThread.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/PlayerThread.cxx')
-rw-r--r--src/PlayerThread.cxx20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/PlayerThread.cxx b/src/PlayerThread.cxx
index 67cfc1498..9ad37eaee 100644
--- a/src/PlayerThread.cxx
+++ b/src/PlayerThread.cxx
@@ -33,6 +33,8 @@
#include "tag/Tag.hxx"
#include "Idle.hxx"
#include "GlobalEvents.hxx"
+#include "util/Domain.hxx"
+#include "Log.hxx"
#include <cmath>
@@ -40,8 +42,7 @@
#include <string.h>
-#undef G_LOG_DOMAIN
-#define G_LOG_DOMAIN "player_thread"
+static constexpr Domain player_domain("player");
enum class CrossFadeState : int8_t {
DISABLED = -1,
@@ -402,7 +403,7 @@ Player::OpenOutput()
return true;
} else {
- g_warning("%s", error.GetMessage());
+ LogError(error);
output_open = false;
@@ -461,8 +462,9 @@ Player::CheckDecoderStartup()
if (!paused && !OpenOutput()) {
char *uri = dc.song->GetURI();
- g_warning("problems opening audio device "
- "while playing \"%s\"", uri);
+ FormatError(player_domain,
+ "problems opening audio device "
+ "while playing \"%s\"", uri);
g_free(uri);
return true;
@@ -487,7 +489,7 @@ Player::SendSilence()
struct music_chunk *chunk = buffer.Allocate();
if (chunk == nullptr) {
- g_warning("Failed to allocate silence buffer");
+ LogError(player_domain, "Failed to allocate silence buffer");
return false;
}
@@ -506,7 +508,7 @@ Player::SendSilence()
Error error;
if (!audio_output_all_play(chunk, error)) {
- g_warning("%s", error.GetMessage());
+ LogError(error);
buffer.Return(chunk);
return false;
}
@@ -838,7 +840,7 @@ Player::PlayNextChunk()
Error error;
if (!play_chunk(pc, song, chunk, buffer, play_audio_format, error)) {
- g_warning("%s", error.GetMessage());
+ LogError(error);
buffer.Return(chunk);
@@ -877,7 +879,7 @@ Player::SongBorder()
xfade_state = CrossFadeState::UNKNOWN;
char *uri = song->GetURI();
- g_message("played \"%s\"", uri);
+ FormatInfo(player_domain, "played \"%s\"", uri);
g_free(uri);
ReplacePipe(dc.pipe);