Remove redundant debug logging

This commit is contained in:
Keith Edmunds 2022-10-23 14:27:18 +01:00
parent 5e770b3975
commit ef9b1e7ce5

View File

@ -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)