Remove redundant debug logging
This commit is contained in:
parent
5e770b3975
commit
ef9b1e7ce5
@ -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)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user