comment-out unnecessary logs

This commit is contained in:
Daniel Pavel 2013-06-05 00:32:01 +02:00
parent c186573775
commit eb3e2566e9
1 changed files with 4 additions and 4 deletions

View File

@ -70,8 +70,8 @@ try:
n.set_urgency(Notify.Urgency.NORMAL) n.set_urgency(Notify.Urgency.NORMAL)
try: try:
if _log.isEnabledFor(_DEBUG): # if _log.isEnabledFor(_DEBUG):
_log.debug("showing %s", n) # _log.debug("showing %s", n)
n.show() n.show()
except Exception: except Exception:
_log.exception("showing %s", n) _log.exception("showing %s", n)
@ -100,8 +100,8 @@ try:
n.set_urgency(urgency) n.set_urgency(urgency)
try: try:
if _log.isEnabledFor(_DEBUG): # if _log.isEnabledFor(_DEBUG):
_log.debug("showing %s", n) # _log.debug("showing %s", n)
n.show() n.show()
except Exception: except Exception:
_log.exception("showing %s", n) _log.exception("showing %s", n)