From 871be9c98b15005fa1874a71e406ea5324b0a80a Mon Sep 17 00:00:00 2001 From: J0J0 Todos Date: Sat, 27 May 2023 00:59:49 +0200 Subject: [PATCH 1/2] Log smartplaylist create msg as info log instead of debug log. In an explicit run (not while importing) it doesn't hurt to get some progress to the UI. --- beetsplug/smartplaylist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/smartplaylist.py b/beetsplug/smartplaylist.py index 2bed2542bf..cb47a8cb8f 100644 --- a/beetsplug/smartplaylist.py +++ b/beetsplug/smartplaylist.py @@ -192,7 +192,7 @@ def update_playlists(self, lib, pretend=False): if pretend: self._log.info('Results for playlist {}:', name) else: - self._log.debug("Creating playlist {0}", name) + self._log.info("Creating playlist {0}", name) items = [] if query: From 409db2e6c169943ad13e3a2c5305717e4da199ce Mon Sep 17 00:00:00 2001 From: J0J0 Todos Date: Tue, 25 Jul 2023 08:10:14 +0200 Subject: [PATCH 2/2] Add changelog for #4861 --- docs/changelog.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index c2954c265c..9499f8ab18 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -97,6 +97,10 @@ New features: * :doc:`plugins/discogs`: Add support for applying album information on singleton imports. :bug: `4716` +* :doc:`/plugins/smartplaylist`: During explicit runs of the ``splupdate`` + command, the log message "Creating playlist ..."" is now displayed instead of + hidden in the debug log, which states some form of progress through the UI. + :bug:`4861` Bug fixes: