From d2caed3971772dd79a8996e8d1febc3425bd0302 Mon Sep 17 00:00:00 2001 From: J0J0 Todos Date: Sun, 7 Sep 2025 22:50:05 +0200 Subject: [PATCH] lastgenre: Also log which whitelist file is loading --- beetsplug/lastgenre/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/beetsplug/lastgenre/__init__.py b/beetsplug/lastgenre/__init__.py index f8619ec97..cd385677f 100644 --- a/beetsplug/lastgenre/__init__.py +++ b/beetsplug/lastgenre/__init__.py @@ -124,6 +124,7 @@ class LastGenrePlugin(plugins.BeetsPlugin): if wl_filename in (True, "", None): # Indicates the default whitelist. wl_filename = WHITELIST if wl_filename: + self._log.debug("Loading whitelist {}", wl_filename) text = Path(wl_filename).expanduser().read_text(encoding="utf-8") for line in text.splitlines(): if (line := line.strip().lower()) and not line.startswith("#"):