20 lines
310 B
Python
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
|
|
|