aboutsummaryrefslogtreecommitdiffstats
path: root/src/PlaylistAny.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/PlaylistAny.cxx')
-rw-r--r--src/PlaylistAny.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/PlaylistAny.cxx b/src/PlaylistAny.cxx
index f0d044ca6..997c59a4e 100644
--- a/src/PlaylistAny.cxx
+++ b/src/PlaylistAny.cxx
@@ -21,9 +21,11 @@
#include "PlaylistAny.hxx"
#include "PlaylistMapper.hxx"
#include "PlaylistRegistry.hxx"
+#include "PlaylistError.hxx"
#include "util/UriUtil.hxx"
#include "util/Error.hxx"
#include "InputStream.hxx"
+#include "Log.hxx"
#include <assert.h>
@@ -43,8 +45,7 @@ playlist_open_remote(const char *uri, Mutex &mutex, Cond &cond,
input_stream *is = input_stream::Open(uri, mutex, cond, error);
if (is == nullptr) {
if (error.IsDefined())
- g_warning("Failed to open %s: %s",
- uri, error.GetMessage());
+ FormatError(error, "Failed to open %s", uri);
return nullptr;
}