Skip to content

Commit 80e3092

Browse files
committed
nice
1 parent 4b1206c commit 80e3092

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

yami/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
"""add sys args and logs"""
77

8-
logging.getLogger().setLevel(logging.INFO)
8+
logging.getLogger().setLevel(logging.DEBUG)
99

1010

1111
def entry():

yami/music.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ def play_next_song(self, _event=None):
108108
self.playlist_frame.song_list.select_set(self.playlist_index)
109109

110110
def play_previous(self, event=None):
111+
logging.debug("playing previous song due to button press / keybind")
111112
self.music_list_player.previous()
112113
self.change_info()
113114
# UPDATE SELECTION

yami/progress.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def __init__(self, parent):
2020
self.pack(fill="x") # IMP
2121

2222
def start_progress_bar(self, song_length):
23-
logging.info("progress bar started")
23+
logging.debug("progress bar started")
2424
self.progress_bar.set(0)
2525
self.music_player.song_length = song_length
2626
self.music_player.update()

0 commit comments

Comments
 (0)