Mqtt2Mongo/logger.py

20 lines
310 B
Python
Raw Normal View History

2015-06-09 17:01:20 +02:00
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