Skip to content

Commit

Permalink
Merge pull request #4861 from JOJ0/splupdate_create_log
Browse files Browse the repository at this point in the history
Log smart playlist create msg as info log
  • Loading branch information
sampsyo authored Jul 25, 2023
2 parents c03bd26 + 409db2e commit 0cc52fe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion beetsplug/smartplaylist.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 4 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down

0 comments on commit 0cc52fe

Please sign in to comment.