diff --git a/app/infotabs.py b/app/infotabs.py index 7399e4c..b01907f 100644 --- a/app/infotabs.py +++ b/app/infotabs.py @@ -38,7 +38,7 @@ class InfoTabs(QTabWidget): """Search Songfacts for title""" slug = slugify(title, replacements=([["'", ""]])) - log.error(f"Songfacts Infotab for {title=}") + log.info(f"Songfacts Infotab for {title=}") url = f"https://www.songfacts.com/search/songs/{slug}" self.open_tab(url, title) @@ -47,7 +47,7 @@ class InfoTabs(QTabWidget): """Search Wikipedia for title""" str = urllib.parse.quote_plus(title) - log.error(f"Wikipedia Infotab for {title=}") + log.info(f"Wikipedia Infotab for {title=}") url = f"https://www.wikipedia.org/w/index.php?search={str}" self.open_tab(url, title) diff --git a/app/music.py b/app/music.py index d5a295f..0aecc21 100644 --- a/app/music.py +++ b/app/music.py @@ -44,7 +44,7 @@ class FadeTrack(QRunnable): sleep(1 / Config.FADEOUT_STEPS_PER_SECOND) self.player.stop() - log.debug(f"Releasing player {self.player=}") + log.error(f"Releasing player {self.player=}") self.player.release()