fix debugging

This commit is contained in:
Wolfgang Hottgenroth
2007-11-16 09:19:26 +01:00
parent c9e6c2f6b0
commit b370beb829
8 changed files with 63 additions and 36 deletions

View File

@ -14,7 +14,7 @@ class DynHandler(threading.Thread):
event = self.eventq.get()
try:
event.prepare()
Logger.log("Processing event %s" % str(event))
Logger.debug("Processing event %s" % str(event))
event.process()
except Event.IllegalEventException, e:
Logger.log("Some failure: %s" % e.msg)
Logger.log("Some failure: %s when processing event %s" % (e.msg, str(event)))