一段不熟悉的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 logging
try: # Python 2.7+
from logging import NullHandler
except ImportError:
class NullHandler(logging.Handler):
def emit(self, record):
pass
logging.getLogger(__name__).addHandler(NullHandler())
产品版本: requests最新
操作系统: Linux
Python: 2.7.x
Cela signifie que si votre version actuelle du module de journalisation n'a pas de NullHandler, écrivez-en un vous-même. En bref, assurez-vous que le code suivant a un NullHandler disponible
.