Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Log smart playlist create msg as info log #4861

Merged
merged 2 commits into from
Jul 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading