aboutsummaryrefslogtreecommitdiffstats
path: root/playlist.py
diff options
context:
space:
mode:
Diffstat (limited to 'playlist.py')
-rw-r--r--playlist.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/playlist.py b/playlist.py
index 5c52774..084fd21 100644
--- a/playlist.py
+++ b/playlist.py
@@ -1,4 +1,3 @@
-import logging
class Playlist:
def __init__(self, callback):
@@ -8,13 +7,11 @@ class Playlist:
def addSong(self, path):
self._songList.append(path)
- logging.debug(f"Added song: {path}")
def setCurrentSong(self, index):
if index >= 0 and index < len(self._songList):
self._currentSong = index
self._setSongCallback(self._songList[index])
- logging.debug(f"Selected song: {self._currentSong}")
def getCurrentSong(self):
index = self._currentSong