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