From 689e617eea51ec32ec1cecda0c21d58f9e60ffd4 Mon Sep 17 00:00:00 2001 From: kokarare1212 Date: Wed, 20 Oct 2021 20:25:14 +0900 Subject: [PATCH] Change logging output --- librespot/audio/decoders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/librespot/audio/decoders.py b/librespot/audio/decoders.py index 9976a0e..7910f20 100644 --- a/librespot/audio/decoders.py +++ b/librespot/audio/decoders.py @@ -67,7 +67,7 @@ class VorbisOnlyAudioQuality(AudioQualityPicker): if vorbis is not None: self.logger.warning( "Using {} because preferred {} couldn't be found.".format( - vorbis.format, self.preferred)) + Metadata.AudioFile.Format.Name(vorbis.format), self.preferred)) else: self.logger.fatal( "Couldn't find any Vorbis file, available: {}")