(no commit message)

This commit is contained in:
wn
2008-08-12 16:18:57 +02:00
parent c45651cfe3
commit fcd8901bb9
7 changed files with 196 additions and 179 deletions

View File

@ -11,7 +11,7 @@ class Logger(object):
@staticmethod
def debug(data):
if Logger.debugFlag:
syslog.syslog(syslog.LOG_DEBUG, data)
syslog.syslog(syslog.LOG_DEBUG, data)
print data
@staticmethod
@ -24,7 +24,7 @@ class Logger(object):
@staticmethod
def debugDisable():
Logger.debugFlag = False
Logger.debugFlag = False
debugFlag = False