Compare commits

...

2 Commits

Author SHA1 Message Date
Keith Edmunds
e711ab84ab Move some logging from info to debug 2024-06-27 20:43:38 +01:00
Keith Edmunds
67bc3377cb Fix logging error 2024-06-27 20:41:56 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -984,7 +984,7 @@ class Window(QMainWindow, Ui_MainWindow):
# seconds of playback. Re-enable in update_clocks.
self.timer10.stop()
log.debug("10ms timer disabled", 0)
log.debug("10ms timer disabled")
# If there's currently a track playing, fade it.
if track_sequence.current:

View File

@ -283,7 +283,7 @@ class PlaylistTab(QTableView):
else:
proxy_index = to_index
to_model_row = self.proxy_model.mapToSource(proxy_index).row()
log.info(
log.debug(
f"PlaylistTab.dropEvent(): {from_rows=}, {proxy_index=}, {to_model_row=}"
)