From f4c4a1d0e826cf658ffcb10a6f6f886577df5d3f Mon Sep 17 00:00:00 2001 From: klonfish Date: Mon, 18 May 2015 19:24:16 +0200 Subject: [PATCH] Debug output on file playing --- phoneinterface.py | 1 + 1 file changed, 1 insertion(+) diff --git a/phoneinterface.py b/phoneinterface.py index e049809..92b4829 100644 --- a/phoneinterface.py +++ b/phoneinterface.py @@ -125,6 +125,7 @@ class PhoneInterface(object): self.__core.stop_ringing() def __play_file(self, filename, length, continous=False): + print 'Playing file:', filename self.__playing = True t = threading.Thread(target=self.__play_loop_thread, args=(filename, length, continous)) t.start()