from DAP.Core import logIt class CFLog: @staticmethod def notice(message : str): logIt.notice(message) @staticmethod def warning(message : str): logIt.warning(message) @staticmethod def error(message : str): logIt.error(message)