From 7135fdbc3dccf94aab172176de5d8d2dc7d4f84e Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Tue, 4 Sep 2012 09:00:11 -0400 Subject: [PATCH] k --- python_apps/media-monitor2/media/monitor/watchersyncer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python_apps/media-monitor2/media/monitor/watchersyncer.py b/python_apps/media-monitor2/media/monitor/watchersyncer.py index 869d55919..097bcf039 100644 --- a/python_apps/media-monitor2/media/monitor/watchersyncer.py +++ b/python_apps/media-monitor2/media/monitor/watchersyncer.py @@ -92,12 +92,12 @@ class TimeoutWatcher(threading.Thread,Loggable): # isn't strictly necessary since RequestSync threads already # chain themselves if self.watcher.requests_in_queue(): - self.logger.info("We got %d requests waiting to be launched" % + self.logger.info("We have %d requests waiting to be launched" % self.watcher.requests_left_count()) self.watcher.request_do() # Same for events, this behaviour is mandatory however. if self.watcher.events_in_queue(): - self.logger.info("We got %d events that are unflushed" % + self.logger.info("We have %d events that are unflushed" % self.watcher.events_left_count()) self.watcher.flush_events()