From dd1cec4196e74cce2025d2d781e8c2a30cb55147 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 19 Sep 2014 21:51:24 +0200 Subject: decoder/sndfile: log detailed sf_open_virtual() error message --- src/decoder/plugins/SndfileDecoderPlugin.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/decoder/plugins') diff --git a/src/decoder/plugins/SndfileDecoderPlugin.cxx b/src/decoder/plugins/SndfileDecoderPlugin.cxx index 74567cc82..34b214339 100644 --- a/src/decoder/plugins/SndfileDecoderPlugin.cxx +++ b/src/decoder/plugins/SndfileDecoderPlugin.cxx @@ -197,7 +197,8 @@ sndfile_stream_decode(Decoder &decoder, InputStream &is) SndfileInputStream sis{&decoder, is}; SNDFILE *const sf = sf_open_virtual(&vio, SFM_READ, &info, &sis); if (sf == nullptr) { - LogWarning(sndfile_domain, "sf_open_virtual() failed"); + FormatWarning(sndfile_domain, "sf_open_virtual() failed: %s", + sf_strerror(nullptr)); return; } -- cgit v1.2.3