From db1c77fb25bc70465d4e258991fa5d067b909368 Mon Sep 17 00:00:00 2001 From: Alok Saboo Date: Thu, 12 May 2022 20:38:01 -0400 Subject: [PATCH] Update spotify.py --- beetsplug/spotify.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/beetsplug/spotify.py b/beetsplug/spotify.py index 20b133257..47ef6148a 100644 --- a/beetsplug/spotify.py +++ b/beetsplug/spotify.py @@ -597,6 +597,8 @@ class SpotifyPlugin(MetadataSourcePlugin, BeetsPlugin): self.track_audio_features(item.spotify_track_id) for feature in audio_features.keys(): if feature in spotify_audio_features.keys(): + self._log.info('feature: {}', + audio_features[feature]) item[spotify_audio_features[feature][0]] = \ audio_features[feature] item.store()