您的位置:首页技术文章
文章详情页

Python-requests中, 这一段logging的用法是什么作用 ?

浏览:34日期:2022-09-09 14:23:15

问题描述

实际现象

一段不熟悉的logging用法( 猜测是给库打log 用的 )

预期现象

弄清楚该段 logging 代码的作用原理( 虽然有句注释 # Set default logging handler to avoid 'No handler found' warnings. )

相关代码

requests.__init__.py中的用法

# Set default logging handler to avoid 'No handler found' warnings.import loggingtry: # Python 2.7+ from logging import NullHandlerexcept ImportError: class NullHandler(logging.Handler):def emit(self, record): passlogging.getLogger(__name__).addHandler(NullHandler())上下文环境

产品版本: requests最新

操作系统: Linux

Python: 2.7.x

问题解答

回答1:

意思就是你当前版本的logging模块没有NullHandler的时候就自己写一个,总之保证后续的代码有NullHandler可用

标签: Python 编程