From b58e948825d1fd2880a2754a586afb8c2d10aece Mon Sep 17 00:00:00 2001 From: Naomi Aro Date: Fri, 9 Mar 2012 11:28:43 +0100 Subject: [PATCH] CC-733 : adding extra error messages --- python_apps/pypo/pypopush.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python_apps/pypo/pypopush.py b/python_apps/pypo/pypopush.py index 6cb2558e7..61635fc55 100644 --- a/python_apps/pypo/pypopush.py +++ b/python_apps/pypo/pypopush.py @@ -104,6 +104,7 @@ class PypoPush(Thread): track, so let's push it now so that Liquidsoap can start playing it immediately after (and prepare crossfades if need be). """ + self.logger.debug("Push track immediately.") self.telnet_to_liquidsoap(media_item) self.last_end_time = media_item["end"] else: @@ -111,11 +112,13 @@ class PypoPush(Thread): this media item does not start right after a current playing track. We need to sleep, and then wake up when this track starts. """ + self.logger.debug("sleep until track start.") self.sleep_until_start(media_item) self.telnet_to_liquidsoap(media_item) self.last_end_time = media_item["end"] except Exception, e: + self.logger.error('Pypo Push Exception: %s', e) return False return True