mirror of
https://github.com/beetbox/beets.git
synced 2026-02-26 09:11:32 +01:00
replaygain: log album name for album tasks
doesn't seem to be very useful to log the _list of items_ here
This commit is contained in:
parent
7ec7a0d362
commit
545ed6f385
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue