diff --git a/app/playlists.py b/app/playlists.py index f21c08b..aba4521 100644 --- a/app/playlists.py +++ b/app/playlists.py @@ -823,7 +823,6 @@ class PlaylistTab(QTableWidget): def scroll_current_to_top(self) -> None: """Scroll currently-playing row to top""" - log.debug("KAE: playlists.scroll_current_to_top()") current_row = self._get_current_track_row() log.debug(f"KAE: playlists.scroll_current_to_top(), {current_row=}") self._scroll_to_top(current_row) @@ -831,7 +830,6 @@ class PlaylistTab(QTableWidget): def scroll_next_to_top(self) -> None: """Scroll nextly-playing row to top""" - log.debug("KAE: playlists.scroll_next_to_top()") next_row = self._get_next_track_row() log.debug(f"KAE: playlists.scroll_next_to_top(), {next_row=}") self._scroll_to_top(next_row)