V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
uhayate
V2EX  ›  Python

关于 Python 的日志级别的选择

  •  
  •   uhayate · 2017-03-14 19:33:27 +08:00 · 2405 次点击
    这是一个创建于 2599 天前的主题,其中的信息可能已经有所发展或是发生改变。
    我想知道关于这 4 个日志级别 INFO 、 WARNING 、 ERROR 、 CRITICAL ,分别在哪种场景适合用哪种日志级别,比如抛出异常、 IO 操作失败使用 ERROR 。
    求老司机列举出尽可能多的场景,免得新人迷路。
    6 条回复    2017-03-16 11:06:01 +08:00
    knightdf
        1
    knightdf  
       2017-03-14 20:38:20 +08:00   ❤️ 1
    看心情
    freedomSky
        2
    freedomSky  
       2017-03-14 20:57:37 +08:00   ❤️ 2
    日志级别不分语言的吧,这个是 golang 的一个第三方日志 package 的说明,很详细了:

    https://github.com/cihub/seelog/wiki/Log-levels
    lovepython
        3
    lovepython  
       2017-03-14 21:15:46 +08:00
    日志级别问题,在你个人选择。
    你可以针对每个级别,定制不同的 handler ,出现不同的情况引发不同的级别。
    thekoc
        4
    thekoc  
       2017-03-15 09:57:31 +08:00
    Level When it ’ s used
    DEBUG Detailed information, typically of interest only when diagnosing problems.
    INFO Confirmation that things are working as expected.
    WARNING An indication that something unexpected happened, or indicative of some problem in the near future (e.g. ‘ disk space low ’). The software is still working as expected.
    ERROR Due to a more serious problem, the software has not been able to perform some function.
    CRITICAL A serious error, indicating that the program itself may be unable to continue running.

    https://docs.python.org/3/howto/logging.html
    uhayate
        5
    uhayate  
    OP
       2017-03-16 11:04:48 +08:00
    @thekoc OK ,这我知道。我只是想知道关于实际场景的信息。什么情况是 ERROR 之类的
    uhayate
        6
    uhayate  
    OP
       2017-03-16 11:06:01 +08:00
    @freedomSky 谢谢。
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   3567 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 36ms · UTC 05:00 · PVG 13:00 · LAX 22:00 · JFK 01:00
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.