class logger: @staticmethod def info(t): print("[INFO]", t) @staticmethod def error(t): print("[ERROR]", t) @staticmethod def debug(t): print("[DEBUG]", t)