From 15d652dbaee09a176fb29a54d036549e87d4148f Mon Sep 17 00:00:00 2001 From: Karl Besser Date: Thu, 5 Sep 2024 12:28:51 +0200 Subject: [PATCH] Update log message for keeping artist in ftintitle Update the log message when the artist is kept unchanged due to setting the keep_in_artist option to true. --- beetsplug/ftintitle.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/beetsplug/ftintitle.py b/beetsplug/ftintitle.py index 0a404c29c..8936f049b 100644 --- a/beetsplug/ftintitle.py +++ b/beetsplug/ftintitle.py @@ -130,7 +130,9 @@ class FtInTitlePlugin(plugins.BeetsPlugin): """ # In case the artist is kept, do not update the artist fields. if keep_in_artist_field: - self._log.info("artist: {0} -> {1}", item.artist, item.artist) + self._log.info( + "artist: {0} (Not changing due to keep_in_artist)", item.artist + ) else: self._log.info("artist: {0} -> {1}", item.artist, item.albumartist) item.artist = item.albumartist