logging
小桔帽
这个作者很懒,什么都没留下…
展开
-
Python logging浅尝(将log同时输出到Console和日志文件)
先贴上logger/handler/formatter/filter的用处(来源见参考中链接): Loggers expose the interface that application code directly uses. Handlers send the log records (created by loggers) to the appropriate destination. ...原创 2018-03-07 14:16:34 · 23421 阅读 · 5 评论 -
python logging输入文件中文字符乱码
Python版本3.6 解决方法很简单,在定义Filehandler时指定encoding就好了import loggingfile_hanlder = logging.FileHandler(filename='example.log', encoding='utf-8')因为看python的logging.FileHandler()类的代码如下,就知道Filehanlder也支...原创 2018-03-15 11:21:53 · 19020 阅读 · 1 评论