From 545ed6f385030da45111587f4efa3e255dbe11d3 Mon Sep 17 00:00:00 2001 From: wisp3rwind <17089248+wisp3rwind@users.noreply.github.com> Date: Thu, 27 Jan 2022 22:44:15 +0100 Subject: [PATCH] replaygain: log album name for album tasks doesn't seem to be very useful to log the _list of items_ here --- beetsplug/replaygain.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/beetsplug/replaygain.py b/beetsplug/replaygain.py index 5a2c4f7b9..e26273cc3 100644 --- a/beetsplug/replaygain.py +++ b/beetsplug/replaygain.py @@ -353,9 +353,9 @@ class FfmpegBackend(Backend): album_gain = target_level_lufs - album_gain self._log.debug( - "{}: gain {} LU, peak {}" - .format(task.items, album_gain, album_peak) - ) + "{}: gain {} LU, peak {}", + task.album, album_gain, album_peak, + ) task.album_gain = Gain(album_gain, album_peak) task.track_gains = track_gains