mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
Logging: add message about the pattern being tried
This commit is contained in:
parent
b5216a06f4
commit
09660426a8
1 changed files with 1 additions and 0 deletions
|
|
@ -162,6 +162,7 @@ class FromFilenamePlugin(plugins.BeetsPlugin):
|
||||||
|
|
||||||
# Look for useful information in the filenames.
|
# Look for useful information in the filenames.
|
||||||
for pattern in PATTERNS:
|
for pattern in PATTERNS:
|
||||||
|
self._log.debug("Trying pattern: {}".format(pattern))
|
||||||
d = all_matches(names, pattern)
|
d = all_matches(names, pattern)
|
||||||
if d:
|
if d:
|
||||||
apply_matches(d, self._log)
|
apply_matches(d, self._log)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue