log_file = "log/log"datetime_format = "%Y-%m-%d %H:%M:%S"per_log_file_max_size = 10240backup_count = 3log_format = "%(asctime)s %(filename)s[line:%(lineno)d][%(levelname)s] %(message)s"rotate_file_handler = RotatingFileHandler(log_file, maxBytes=per_log_file_max_size,backupCount=backup_count)rotate_file_handler.setLevel(logging.NOTSET)formatter = logging.Formatter(log_format)rotate_file_handler.setFormatter(formatter)logging.getLogger('').addHandler(rotate_file_handler)logging.debug('This is debug message')logging.info('This is info message')logging.warning('This is warning message')logging.error('error')logging.critical('critical')輸出:2017-02-10 17:43:29,055 test.py[line:31][WARNING] This is warning message2017-02-10 17:43:29,055 test.py[line:32][ERROR] error2017-02-10 17:43:29,055 test.py[line:33][CRITICAL] critical
困惑:定義的日志級(jí)別是NOSET,實(shí)際是WANING ?求解釋
繁星點(diǎn)點(diǎn)滴滴
2023-03-19 13:09:06