Mqtt2Mongo/logger.py
2015-06-09 17:01:20 +02:00

20 lines
310 B
Python

class Logger(object):
@staticmethod
def log(data):
print data
if Logger.debugFlag:
print data
@staticmethod
def debugEnable():
Logger.debugFlag = True
@staticmethod
def debugDisable():
Logger.debugFlag = False
debugFlag = False