您好,登錄后才能下訂單哦!
1. 日志輸出到屏幕
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import absolute_import from __future__ import division from __future__ import print_function import logging logging.basicConfig(level=logging.NOTSET, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s') logging.debug('This is a debug message.') logging.info('This is an info message.') logging.warning('This is a warning message.') logging.error('This is an error message.') logging.critical('This is a critical message.')
默認的 level 是 logging.WARNING,低于這個級別的就不輸出了。如果需要顯示低于 logging.WARNING 級別的內容,可以引入 logging.NOTSET 級別來顯示。
DEBUG - 打印全部的日志。詳細的信息,通常只出現在診斷問題上。
INFO - 打印 INFO、WARNING、ERROR、CRITICAL 級別的日志。確認一切按預期運行。
WARNING - 打印 WARNING、ERROR、CRITICAL 級別的日志。表明一些問題在不久的將來,這個軟件還能按預期工作。
ERROR - 打印 ERROR、CRITICAL 級別的日志。更嚴重的問題,軟件沒能執行一些功能。
CRITICAL : 打印 CRITICAL 級別。一個嚴重的錯誤,表明程序本身可能無法繼續運行。
/usr/bin/python2.7 /home/strong/git_workspace/MonoGRNet/test.py 2019-06-26 16:00:45,990 - root - DEBUG - This is a debug message. 2019-06-26 16:00:45,990 - root - INFO - This is an info message. 2019-06-26 16:00:45,990 - root - WARNING - This is a warning message. 2019-06-26 16:00:45,990 - root - ERROR - This is an error message. 2019-06-26 16:00:45,990 - root - CRITICAL - This is a critical message. Process finished with exit code 0
2. 日志輸出到文件
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import absolute_import from __future__ import division from __future__ import print_function import logging import os.path import time logger = logging.getLogger() logger.setLevel(logging.DEBUG) time_line = time.strftime('%Y%m%d%H%M', time.localtime(time.time())) print(os.getcwd()) log_path = os.path.dirname(os.getcwd()) + '/' logfile = log_path + time_line + '.log' handler = logging.FileHandler(logfile, mode='w') handler.setLevel(logging.INFO) formatter = logging.Formatter("%(asctime)s - %(filename)s[line:%(lineno)d] - %(levelname)s: %(message)s") handler.setFormatter(formatter) logger.addHandler(handler) logger.debug('This is a debug message.') logger.info('This is an info message.') logger.warning('This is a warning message.') logger.error('This is an error message.') logger.critical('This is a critical message.')
/usr/bin/python2.7 /home/strong/git_workspace/MonoGRNet/test.py /home/strong/git_workspace/MonoGRNet Process finished with exit code 0
201906261627.log
2019-06-26 16:27:26,899 - test.py[line:30] - INFO: This is an info message. 2019-06-26 16:27:26,899 - test.py[line:31] - WARNING: This is a warning message. 2019-06-26 16:27:26,899 - test.py[line:32] - ERROR: This is an error message. 2019-06-26 16:27:26,899 - test.py[line:33] - CRITICAL: This is a critical message.
3. 日志同時輸出到屏幕和文件
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import absolute_import from __future__ import division from __future__ import print_function import logging import os.path import time logger = logging.getLogger(__name__) logger.setLevel(level=logging.DEBUG) time_line = time.strftime('%Y%m%d%H%M', time.localtime(time.time())) print(os.getcwd()) log_path = os.path.dirname(os.getcwd()) + '/' logfile = log_path + time_line + '.log' handler = logging.FileHandler(logfile, mode='w') handler.setLevel(logging.INFO) formatter = logging.Formatter("%(asctime)s - %(filename)s[line:%(lineno)d] - %(levelname)s: %(message)s") handler.setFormatter(formatter) console = logging.StreamHandler() console.setLevel(logging.WARNING) logger.addHandler(handler) logger.addHandler(console) logger.debug('This is a debug message.') logger.info('This is an info message.') logger.warning('This is a warning message.') logger.error('This is an error message.') logger.critical('This is a critical message.')
/usr/bin/python2.7 /home/strong/git_workspace/MonoGRNet/test.py /home/strong/git_workspace/MonoGRNet This is a warning message. This is an error message. This is a critical message. Process finished with exit code 0
201906261636.log
2019-06-26 16:36:38,385 - test.py[line:34] - INFO: This is an info message. 2019-06-26 16:36:38,385 - test.py[line:35] - WARNING: This is a warning message. 2019-06-26 16:36:38,385 - test.py[line:36] - ERROR: This is an error message. 2019-06-26 16:36:38,385 - test.py[line:37] - CRITICAL: This is a critical message.
以上這篇Python 實現日志同時輸出到屏幕和文件就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。