Python 日誌記錄模組logging的使用

來源:互聯網
上載者:User

標籤:日誌   python   logging   

shell當中記錄log,滿眼花花的重新導向符合,看著很不爽有沒有!我喜歡python,就是喜歡這種買個手電筒,備用電池都準備好了的感覺。logging模組很簡單,匯入模組,定義日誌格式。代碼中就可以通過logging.info(),logging.warning(),logging.debug()記錄日誌了。而且立刻感覺整個人好了很多……

import logginglogging.basicConfig(level=logging.DEBUG,                format=‘%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s‘,                datefmt=‘%a, %d %b %Y %H:%M:%S‘,                filename=‘mylog.log‘,                filemode=‘a‘)      logging.info("這是logging模組記錄的info")logging.debug("這是logging模組的debug資訊")logging.warning("這是logging模組的warning資訊")


日誌輸出如下:
Thu, 05 Feb 2015 17:24:43 1.py[line:12] INFO 這是logging模組記錄的info
Thu, 05 Feb 2015 17:24:43 1.py[line:13] DEBUG 這是logging模組的debug資訊
Thu, 05 Feb 2015 17:24:43 1.py[line:14] WARNING 這是logging模組的warning資訊

本文出自 “燭影搖紅” 部落格,請務必保留此出處http://gccmx.blog.51cto.com/479381/1612082

Python 日誌記錄模組logging的使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.