This commit is contained in:
2024-07-10 16:46:28 +08:00
parent 70d3974058
commit 5c3526319f
4 changed files with 15 additions and 23 deletions
+8 -7
View File
@@ -56,10 +56,11 @@ class LoggerClass:
if __name__ == '__main__':
log = LoggerClass()
test_logger = log.get_log(logging.DEBUG)
test_logger.debug('debug')
test_logger.info('info')
test_logger.warning('warning')
test_logger.error('error')
test_logger.critical('critical')
# log = LoggerClass()
# test_logger = log.get_log(logging.DEBUG)
# test_logger.debug('debug')
# test_logger.info('info')
# test_logger.warning('warning')
# test_logger.error('error')
# test_logger.critical('critical')
pass