当前位置:   article > 正文

logging模块学习笔记_logger.setlevel(logging.info) typeerror("level not

logger.setlevel(logging.info) typeerror("level not an integer or a valid str
一、包结构
核心代码位于__init__.py文件,另外两个文件包含一些扩展

二、关键类
Logger类
数据仓库,用于将日志相关的各种属性收集并格式化。开发者的输入只是属性中的一部分,日志的创建时间、位置、级别等更是收集的重点
Fomatter类
输出模板,用于将Logger实例中指定的属性按照规定的格式转换为字符串,得到的字符串是最终被记录的日志内容
Filter类
过滤器,过滤LogRecord实例,用于判断LogRecord实例是否允许输出
Filterer类
过滤器池,用于串联多个Filter实例,联合过滤LogRecord实例。Handle类和Logger类的父类
Handler类
处理器,Filterer类的子类,将符合条件的LogRecord实例,通过Formatter实例转化为字符串,再输出。Handler类拥有众多子类,线程安全地控制输出是他们的重点作用。
LogRecord类
接口,Filterer类的子类,用于暴露给用户,用户调用生成日志。LogRecord包含一些筛选条件,不符合条件的用户输入会被抛弃
Manager类
接口管理器,用于把Logger实例按照树形结构组织在一起,进而实现Logger实例的复用、Logger实例部分属性的继承

三、调用关系



1、getLogger()调用Manager实例的getLogger()方法,用于获取需要的Logger实例
2、Logger实例是logging模块提供给用户的接口,我们可以通过Logger实例的debug()/info()/warn()/error()/critical()等方法创建日志,除日志级别不同以外,基本没有区别,这里以info()方法为例
3、info()方法会调用isEnabledFor()方法,在isEnabledFor()中,日志将面临人生中的第一次淘汰。Manager实例设置了level属性,规定了整个logging模块的最低日志级别,不低于于这个级别的日志才会被继续处理
4、isEnabledFor()方法会调用getEffectiveLevel()方法。getEffectiveLevel()方法用于获取当前Logger实例的最低日志级别,不低于这个级别的日志才会被继续处理,这是日志人生中的第二次淘汰。isEnabledFor()方法执行完毕,回到info()方法。
5、info()方法继续调用_log()方法,_log()方法尝试获取用户生成这条日志的位置,然后调用makeRecord()方法和handle()方法,info()方法执行完毕。
6、makeRecord()方法将初始化LogRecord()实例,并返回。到现在,新建的日志终于变成了完全体,基本具备了所有可能用到的属性,比如创建时间、创建位置等
7、在handle()方法中,日志面临人生中的第四次淘汰。Logger实例可以通过disabled属性设置为静默模式,处于静默模式的Logger实例将丢弃任意日志。
8、如果Logger不是静默模式,handler()方法将调用filter()方法,filter()方法将尝试让日志依次通过一系列过滤器,通过全部过滤器的日志将被继续处理,这是日志面临的第五次淘汰。
9、handle()方法继续调用callHandlers()方法。Logger实例可能拥有多个并联在一起的处理器(Handle实例),callHandlers()方法是一个分发器,将日志分发给每个处理器进行处理。处理器(Handle实例)也拥有level属性,处理器只会处理级别不小于自己的日志,这是日志面临的第六次淘汰。
10、Handle实例通过handle()方法处理日志,handle()方法调用由父类Filterer继承的filter()方法,filter()方法将尝试让日志依次通过一系列过滤器,通过全部过滤器的日志将被继续处理,这是日志面临的第七次淘汰。
11、handle()方法将调用emit()方法处理活到现在的日志,emit()方法按照Formatter实例规定的格式将LogRecord实例转换为字符串,在这里,日志由完全体变成了最终形态,继而被输出至文件、屏幕等位置。日志的苦难人生终于结束了。

四、一些没有提及的细节
1、Manage和Logger
每个Logger实例都拥有name属性,name属性是一个类似于a.b.c的字符串,Manage实例通过name属性将Logger组织成一个树形结构,并且为树形结构默认设置了根节点。
树形结构可以通过name属性唯一标识Logger实例,有利于代码中复用Logger实例;树形结构还可以帮助实现一些Logger属性的继承,比如level属性、Logger实例拥有的处理器(Handle实例),让代码更简洁,比如Elasticsearch包等使用logging模块输出日志,其专用的Logger实例未设置level字段,继承根节点的level属性,通过设置根节点的level属性,可以轻松提高此类包的输出日志最低等级
2、Filter、Filterer、Handle和Logger
Filter是过滤器,Filterer是过滤器池,过滤器池中的过滤器相互串联。Handle和Logger是Filterer的子类,因此Handle和Logger实例天生拥有filter()方法,天生可以自定义一组过滤器

五、注释源码

  1. # Copyright 2001-2014 by Vinay Sajip. All Rights Reserved.
  2. #
  3. # Permission to use, copy, modify, and distribute this software and its
  4. # documentation for any purpose and without fee is hereby granted,
  5. # provided that the above copyright notice appear in all copies and that
  6. # both that copyright notice and this permission notice appear in
  7. # supporting documentation, and that the name of Vinay Sajip
  8. # not be used in advertising or publicity pertaining to distribution
  9. # of the software without specific, written prior permission.
  10. # VINAY SAJIP DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  11. # ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
  12. # VINAY SAJIP BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  13. # ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
  14. # IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  15. # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  16. """
  17. Logging package for Python. Based on PEP 282 and comments thereto in
  18. comp.lang.python.
  19. Copyright (C) 2001-2014 Vinay Sajip. All Rights Reserved.
  20. To use, simply 'import logging' and log away!
  21. """
  22. import sys, os, time, cStringIO, traceback, warnings, weakref, collections
  23. __all__ = ['BASIC_FORMAT', 'BufferingFormatter', 'CRITICAL', 'DEBUG', 'ERROR',
  24. 'FATAL', 'FileHandler', 'Filter', 'Formatter', 'Handler', 'INFO',
  25. 'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET', 'NullHandler',
  26. 'StreamHandler', 'WARN', 'WARNING', 'addLevelName', 'basicConfig',
  27. 'captureWarnings', 'critical', 'debug', 'disable', 'error',
  28. 'exception', 'fatal', 'getLevelName', 'getLogger', 'getLoggerClass',
  29. 'info', 'log', 'makeLogRecord', 'setLoggerClass', 'warn', 'warning']
  30. try:
  31. import codecs
  32. except ImportError:
  33. codecs = None
  34. try:
  35. import thread
  36. import threading
  37. except ImportError:
  38. thread = None
  39. __author__ = "Vinay Sajip <vinay_sajip@red-dove.com>"
  40. __status__ = "production"
  41. # Note: the attributes below are no longer maintained.
  42. __version__ = "0.5.1.2"
  43. __date__ = "07 February 2010"
  44. #---------------------------------------------------------------------------
  45. # Miscellaneous module data
  46. #---------------------------------------------------------------------------
  47. try:
  48. unicode
  49. _unicode = True
  50. except NameError:
  51. _unicode = False
  52. # next bit filched from 1.5.2's inspect.py
  53. def currentframe():
  54. """Return the frame object for the caller's stack frame."""
  55. """返回currentframe()函数的调用者在函数栈中的结构"""
  56. try:
  57. raise Exception
  58. except:
  59. return sys.exc_info()[2].tb_frame.f_back
  60. # 如果支持sys._getframe()方法,则返回currentframe()函数的调用者的调用者的调用者在函数栈中的结构。指定上3层调用者,是作者根据currentframe()函数在logging模块中的使用场景选择的,为的是在利用currentframe()函数获取logging模块调用者函数栈结构时更高效。
  61. if hasattr(sys, '_getframe'): currentframe = lambda: sys._getframe(3)
  62. # done filching
  63. #
  64. # _srcfile is used when walking the stack to check when we've got the first
  65. # caller stack frame.
  66. # 记录当前文件所在路径
  67. _srcfile = os.path.normcase(currentframe.__code__.co_filename)
  68. # _srcfile is only used in conjunction with sys._getframe().
  69. # To provide compatibility with older versions of Python, set _srcfile
  70. # to None if _getframe() is not available; this value will prevent
  71. # findCaller() from being called.
  72. #if not hasattr(sys, "_getframe"):
  73. # _srcfile = None
  74. #
  75. #_startTime is used as the base when calculating the relative time of events
  76. #
  77. # logging模块第一次被调用的时间戳
  78. _startTime = time.time()
  79. #
  80. #raiseExceptions is used to see if exceptions during handling should be
  81. #propagated
  82. #
  83. # 处理日志时触发的异常是否忽略,忽略设为0
  84. raiseExceptions = 1
  85. #
  86. # If you don't want threading information in the log, set this to zero
  87. #
  88. logThreads = 1
  89. #
  90. # If you don't want multiprocessing information in the log, set this to zero
  91. #
  92. logMultiprocessing = 1
  93. #
  94. # If you don't want process information in the log, set this to zero
  95. #
  96. logProcesses = 1
  97. #---------------------------------------------------------------------------
  98. # Level related stuff
  99. #---------------------------------------------------------------------------
  100. #
  101. # Default levels and level names, these can be replaced with any positive set
  102. # of values having corresponding names. There is a pseudo-level, NOTSET, which
  103. # is only really there as a lower limit for user-defined levels. Handlers and
  104. # loggers are initialized with NOTSET so that they will log all messages, even
  105. # at user-defined levels.
  106. #
  107. # 使用数字表示日志级别,方便比较;将表示级别的数字定义为常亮,方便使用
  108. CRITICAL = 50
  109. FATAL = CRITICAL
  110. ERROR = 40
  111. WARNING = 30
  112. WARN = WARNING
  113. INFO = 20
  114. DEBUG = 10
  115. NOTSET = 0
  116. # 级别名和级别数值互相映射,便于查找
  117. _levelNames = {
  118. CRITICAL : 'CRITICAL',
  119. ERROR : 'ERROR',
  120. WARNING : 'WARNING',
  121. INFO : 'INFO',
  122. DEBUG : 'DEBUG',
  123. NOTSET : 'NOTSET',
  124. 'CRITICAL' : CRITICAL,
  125. 'ERROR' : ERROR,
  126. 'WARN' : WARNING,
  127. 'WARNING' : WARNING,
  128. 'INFO' : INFO,
  129. 'DEBUG' : DEBUG,
  130. 'NOTSET' : NOTSET,
  131. }
  132. def getLevelName(level):
  133. """
  134. Return the textual representation of logging level 'level'.
  135. If the level is one of the predefined levels (CRITICAL, ERROR, WARNING,
  136. INFO, DEBUG) then you get the corresponding string. If you have
  137. associated levels with names using addLevelName then the name you have
  138. associated with 'level' is returned.
  139. If a numeric value corresponding to one of the defined levels is passed
  140. in, the corresponding string representation is returned.
  141. Otherwise, the string "Level %s" % level is returned.
  142. """
  143. """由级别名获取级别数值"""
  144. return _levelNames.get(level, ("Level %s" % level))
  145. def addLevelName(level, levelName):
  146. """
  147. Associate 'levelName' with 'level'.
  148. This is used when converting levels to text during message formatting.
  149. """
  150. """自定义日志级别"""
  151. _acquireLock()
  152. try: #unlikely to cause an exception, but you never know...
  153. _levelNames[level] = levelName
  154. _levelNames[levelName] = level
  155. finally:
  156. _releaseLock()
  157. def _checkLevel(level):
  158. """检测level有效性。level为数字,无论该数字是否在_levelNames中定义,均有效;level为字符串,_levelNames中定义的日志级别名有效;其他level取值无效"""
  159. if isinstance(level, (int, long)):
  160. rv = level
  161. elif str(level) == level:
  162. if level not in _levelNames:
  163. raise ValueError("Unknown level: %r" % level)
  164. rv = _levelNames[level]
  165. else:
  166. raise TypeError("Level not an integer or a valid string: %r" % level)
  167. return rv
  168. #---------------------------------------------------------------------------
  169. # Thread-related stuff
  170. #---------------------------------------------------------------------------
  171. #
  172. #_lock is used to serialize access to shared data structures in this module.
  173. #This needs to be an RLock because fileConfig() creates and configures
  174. #Handlers, and so might arbitrary user threads. Since Handler code updates the
  175. #shared dictionary _handlers, it needs to acquire the lock. But if configuring,
  176. #the lock would already have been acquired - so we need an RLock.
  177. #The same argument applies to Loggers and Manager.loggerDict.
  178. #
  179. # 模块级别锁,用于模块级别的公用数据
  180. if thread:
  181. _lock = threading.RLock()
  182. else:
  183. _lock = None
  184. def _acquireLock():
  185. """
  186. Acquire the module-level lock for serializing access to shared data.
  187. This should be released with _releaseLock().
  188. """
  189. if _lock:
  190. _lock.acquire()
  191. def _releaseLock():
  192. """
  193. Release the module-level lock acquired by calling _acquireLock().
  194. """
  195. if _lock:
  196. _lock.release()
  197. #---------------------------------------------------------------------------
  198. # The logging record
  199. #---------------------------------------------------------------------------
  200. class LogRecord(object):
  201. """
  202. A LogRecord instance represents an event being logged.
  203. LogRecord instances are created every time something is logged. They
  204. contain all the information pertinent to the event being logged. The
  205. main information passed in is in msg and args, which are combined
  206. using str(msg) % args to create the message field of the record. The
  207. record also includes information such as when the record was created,
  208. the source line where the logging call was made, and any exception
  209. information to be logged.
  210. """
  211. """
  212. LogRecord类。包含一条日志的各种信息,用于根据格式要求,生成指定样式的日志字符串
  213. """
  214. def __init__(self, name, level, pathname, lineno,
  215. msg, args, exc_info, func=None):
  216. """
  217. Initialize a logging record with interesting information.
  218. """
  219. ct = time.time()
  220. self.name = name
  221. self.msg = msg
  222. #
  223. # The following statement allows passing of a dictionary as a sole
  224. # argument, so that you can do something like
  225. # logging.debug("a %(a)d b %(b)s", {'a':1, 'b':2})
  226. # Suggested by Stefan Behnel.
  227. # Note that without the test for args[0], we get a problem because
  228. # during formatting, we test to see if the arg is present using
  229. # 'if self.args:'. If the event being logged is e.g. 'Value is %d'
  230. # and if the passed arg fails 'if self.args:' then no formatting
  231. # is done. For example, logger.warn('Value is %d', 0) would log
  232. # 'Value is %d' instead of 'Value is 0'.
  233. # For the use case of passing a dictionary, this should not be a
  234. # problem.
  235. # Issue #21172: a request was made to relax the isinstance check
  236. # to hasattr(args[0], '__getitem__'). However, the docs on string
  237. # formatting still seem to suggest a mapping object is required.
  238. # Thus, while not removing the isinstance check, it does now look
  239. # for collections.Mapping rather than, as before, dict.
  240. if (args and len(args) == 1 and isinstance(args[0], collections.Mapping)
  241. and args[0]):
  242. args = args[0]
  243. self.args = args
  244. self.levelname = getLevelName(level)
  245. self.levelno = level
  246. self.pathname = pathname # logging调用者所在文件完整路径
  247. try:
  248. self.filename = os.path.basename(pathname) # logging调用者完整文件名
  249. self.module = os.path.splitext(self.filename)[0] # logging调用者文件名,不带扩展名
  250. except (TypeError, ValueError, AttributeError):
  251. self.filename = pathname
  252. self.module = "Unknown module"
  253. self.exc_info = exc_info
  254. self.exc_text = None # used to cache the traceback text
  255. self.lineno = lineno
  256. self.funcName = func # 用户调用Logger实例所在函数名
  257. self.created = ct
  258. self.msecs = (ct - long(ct)) * 1000
  259. self.relativeCreated = (self.created - _startTime) * 1000
  260. if logThreads and thread:
  261. self.thread = thread.get_ident()
  262. self.threadName = threading.current_thread().name
  263. else:
  264. self.thread = None
  265. self.threadName = None
  266. if not logMultiprocessing:
  267. self.processName = None
  268. else:
  269. self.processName = 'MainProcess'
  270. mp = sys.modules.get('multiprocessing')
  271. if mp is not None:
  272. # Errors may occur if multiprocessing has not finished loading
  273. # yet - e.g. if a custom import hook causes third-party code
  274. # to run when multiprocessing calls import. See issue 8200
  275. # for an example
  276. try:
  277. self.processName = mp.current_process().name
  278. except StandardError:
  279. pass
  280. if logProcesses and hasattr(os, 'getpid'):
  281. self.process = os.getpid()
  282. else:
  283. self.process = None
  284. def __str__(self):
  285. return '<LogRecord: %s, %s, %s, %s, "%s">'%(self.name, self.levelno,
  286. self.pathname, self.lineno, self.msg)
  287. def getMessage(self):
  288. """
  289. Return the message for this LogRecord.
  290. Return the message for this LogRecord after merging any user-supplied
  291. arguments with the message.
  292. """
  293. """用户描述日志内容时可能使用格式化字符串的方式,处理用户需要输出的日志内"""
  294. if not _unicode: #if no unicode support...
  295. msg = str(self.msg)
  296. else:
  297. msg = self.msg
  298. if not isinstance(msg, basestring):
  299. try:
  300. msg = str(self.msg)
  301. except UnicodeError:
  302. msg = self.msg #Defer encoding till later
  303. if self.args:
  304. msg = msg % self.args
  305. return msg
  306. def makeLogRecord(dict):
  307. """
  308. Make a LogRecord whose attributes are defined by the specified dictionary,
  309. This function is useful for converting a logging event received over
  310. a socket connection (which is sent as a dictionary) into a LogRecord
  311. instance.
  312. """
  313. """声明‘空’的LogRecord实例,使用dict.update()方法,强行更新它"""
  314. rv = LogRecord(None, None, "", 0, "", (), None, None)
  315. rv.__dict__.update(dict)
  316. return rv
  317. #---------------------------------------------------------------------------
  318. # Formatter classes and functions
  319. #---------------------------------------------------------------------------
  320. class Formatter(object):
  321. """
  322. Formatter instances are used to convert a LogRecord to text.
  323. Formatters need to know how a LogRecord is constructed. They are
  324. responsible for converting a LogRecord to (usually) a string which can
  325. be interpreted by either a human or an external system. The base Formatter
  326. allows a formatting string to be specified. If none is supplied, the
  327. default value of "%s(message)\\n" is used.
  328. The Formatter can be initialized with a format string which makes use of
  329. knowledge of the LogRecord attributes - e.g. the default value mentioned
  330. above makes use of the fact that the user's message and arguments are pre-
  331. formatted into a LogRecord's message attribute. Currently, the useful
  332. attributes in a LogRecord are described by:
  333. %(name)s Name of the logger (logging channel)
  334. %(levelno)s Numeric logging level for the message (DEBUG, INFO,
  335. WARNING, ERROR, CRITICAL)
  336. %(levelname)s Text logging level for the message ("DEBUG", "INFO",
  337. "WARNING", "ERROR", "CRITICAL")
  338. %(pathname)s Full pathname of the source file where the logging
  339. call was issued (if available)
  340. %(filename)s Filename portion of pathname
  341. %(module)s Module (name portion of filename)
  342. %(lineno)d Source line number where the logging call was issued
  343. (if available)
  344. %(funcName)s Function name
  345. %(created)f Time when the LogRecord was created (time.time()
  346. return value)
  347. %(asctime)s Textual time when the LogRecord was created
  348. %(msecs)d Millisecond portion of the creation time
  349. %(relativeCreated)d Time in milliseconds when the LogRecord was created,
  350. relative to the time the logging module was loaded
  351. (typically at application startup time)
  352. %(thread)d Thread ID (if available)
  353. %(threadName)s Thread name (if available)
  354. %(process)d Process ID (if available)
  355. %(message)s The result of record.getMessage(), computed just as
  356. the record is emitted
  357. """
  358. """
  359. 指定格式,生成包含‘主体内容’+‘附加内容’的完整日志,用户调用logging模块希望输出的是‘主体内容’,调用logging模块的时间、位置等是‘附加内容’
  360. 具体实现:‘format’ % LogRecord.__dict__
  361. 基于以上原理,我们可以为LogRecord添加自定义属性,并且在最终结果中得以体现
  362. """
  363. converter = time.localtime
  364. def __init__(self, fmt=None, datefmt=None):
  365. """
  366. Initialize the formatter with specified format strings.
  367. Initialize the formatter either with the specified format string, or a
  368. default as described above. Allow for specialized date formatting with
  369. the optional datefmt argument (if omitted, you get the ISO8601 format).
  370. """
  371. if fmt:
  372. self._fmt = fmt
  373. else:
  374. self._fmt = "%(message)s"
  375. self.datefmt = datefmt
  376. def formatTime(self, record, datefmt=None):
  377. """
  378. Return the creation time of the specified LogRecord as formatted text.
  379. This method should be called from format() by a formatter which
  380. wants to make use of a formatted time. This method can be overridden
  381. in formatters to provide for any specific requirement, but the
  382. basic behaviour is as follows: if datefmt (a string) is specified,
  383. it is used with time.strftime() to format the creation time of the
  384. record. Otherwise, the ISO8601 format is used. The resulting
  385. string is returned. This function uses a user-configurable function
  386. to convert the creation time to a tuple. By default, time.localtime()
  387. is used; to change this for a particular formatter instance, set the
  388. 'converter' attribute to a function with the same signature as
  389. time.localtime() or time.gmtime(). To change it for all formatters,
  390. for example if you want all logging times to be shown in GMT,
  391. set the 'converter' attribute in the Formatter class.
  392. """
  393. """输出本地时间字符串"""
  394. ct = self.converter(record.created)
  395. if datefmt:
  396. s = time.strftime(datefmt, ct)
  397. else:
  398. t = time.strftime("%Y-%m-%d %H:%M:%S", ct)
  399. s = "%s,%03d" % (t, record.msecs)
  400. return s
  401. def formatException(self, ei):
  402. """
  403. Format and return the specified exception information as a string.
  404. This default implementation just uses
  405. traceback.print_exception()
  406. """
  407. """输出触发异常时的函数调用栈相关信息,以字符串形式。ei被赋值为sys.exc_info()函数的返回值"""
  408. sio = cStringIO.StringIO()
  409. traceback.print_exception(ei[0], ei[1], ei[2], None, sio)
  410. s = sio.getvalue()
  411. sio.close()
  412. if s[-1:] == "\n":
  413. s = s[:-1]
  414. return s
  415. def usesTime(self):
  416. """
  417. Check if the format uses the creation time of the record.
  418. """
  419. """判断指定的日志格式中,是否使用到asctime属性(LogRecord实例创建时间)"""
  420. return self._fmt.find("%(asctime)") >= 0
  421. def format(self, record):
  422. """
  423. Format the specified record as text.
  424. The record's attribute dictionary is used as the operand to a
  425. string formatting operation which yields the returned string.
  426. Before formatting the dictionary, a couple of preparatory steps
  427. are carried out. The message attribute of the record is computed
  428. using LogRecord.getMessage(). If the formatting string uses the
  429. time (as determined by a call to usesTime(), formatTime() is
  430. called to format the event time. If there is exception information,
  431. it is formatted using formatException() and appended to the message.
  432. """
  433. """
  434. 使用‘format’ % LogRecord.__dict__的方式得到用于输出的日志
  435. LogRecord实例中部分属性需要先进行处理,比如时间、异常信息、日志主体内容。先处理,将处理结果保存至LogRecord实例再统一格式化,这样的处理更清晰。
  436. """
  437. record.message = record.getMessage()
  438. if self.usesTime():
  439. record.asctime = self.formatTime(record, self.datefmt)
  440. try:
  441. s = self._fmt % record.__dict__
  442. except UnicodeDecodeError as e:
  443. # Issue 25664. The logger name may be Unicode. Try again ...
  444. try:
  445. record.name = record.name.decode('utf-8')
  446. s = self._fmt % record.__dict__
  447. except UnicodeDecodeError:
  448. raise e
  449. if record.exc_info:
  450. # Cache the traceback text to avoid converting it multiple times
  451. # (it's constant anyway)
  452. if not record.exc_text:
  453. record.exc_text = self.formatException(record.exc_info)
  454. if record.exc_text:
  455. if s[-1:] != "\n":
  456. s = s + "\n"
  457. try:
  458. s = s + record.exc_text
  459. except UnicodeError:
  460. # Sometimes filenames have non-ASCII chars, which can lead
  461. # to errors when s is Unicode and record.exc_text is str
  462. # See issue 8924.
  463. # We also use replace for when there are multiple
  464. # encodings, e.g. UTF-8 for the filesystem and latin-1
  465. # for a script. See issue 13232.
  466. s = s + record.exc_text.decode(sys.getfilesystemencoding(),
  467. 'replace')
  468. return s
  469. #
  470. # The default formatter to use when no other is specified
  471. #
  472. _defaultFormatter = Formatter()
  473. class BufferingFormatter(object):
  474. """
  475. A formatter suitable for formatting a number of records.
  476. """
  477. """以相同的格式处理一组LogRecord实例,并且可以再开头和结尾添加注脚"""
  478. def __init__(self, linefmt=None):
  479. """
  480. Optionally specify a formatter which will be used to format each
  481. individual record.
  482. """
  483. if linefmt:
  484. self.linefmt = linefmt
  485. else:
  486. self.linefmt = _defaultFormatter
  487. def formatHeader(self, records):
  488. """
  489. Return the header string for the specified records.
  490. """
  491. return ""
  492. def formatFooter(self, records):
  493. """
  494. Return the footer string for the specified records.
  495. """
  496. return ""
  497. def format(self, records):
  498. """
  499. Format the specified records and return the result as a string.
  500. """
  501. rv = ""
  502. if len(records) > 0:
  503. rv = rv + self.formatHeader(records)
  504. for record in records:
  505. rv = rv + self.linefmt.format(record)
  506. rv = rv + self.formatFooter(records)
  507. return rv
  508. #---------------------------------------------------------------------------
  509. # Filter classes and functions
  510. #---------------------------------------------------------------------------
  511. class Filter(object):
  512. """
  513. Filter instances are used to perform arbitrary filtering of LogRecords.
  514. Loggers and Handlers can optionally use Filter instances to filter
  515. records as desired. The base filter class only allows events which are
  516. below a certain point in the logger hierarchy. For example, a filter
  517. initialized with "A.B" will allow events logged by loggers "A.B",
  518. "A.B.C", "A.B.C.D", "A.B.D" etc. but not "A.BB", "B.A.B" etc. If
  519. initialized with the empty string, all events are passed.
  520. """
  521. """过滤器。filter()方法可以按照需求重写,默认按照name属性判断LogRecord实例是否通过筛选"""
  522. def __init__(self, name=''):
  523. """
  524. Initialize a filter.
  525. Initialize with the name of the logger which, together with its
  526. children, will have its events allowed through the filter. If no
  527. name is specified, allow every event.
  528. """
  529. self.name = name
  530. self.nlen = len(name)
  531. def filter(self, record):
  532. """
  533. Determine if the specified record is to be logged.
  534. Is the specified record to be logged? Returns 0 for no, nonzero for
  535. yes. If deemed appropriate, the record may be modified in-place.
  536. """
  537. if self.nlen == 0:
  538. return 1
  539. elif self.name == record.name:
  540. return 1
  541. elif record.name.find(self.name, 0, self.nlen) != 0:
  542. return 0
  543. return (record.name[self.nlen] == ".")
  544. class Filterer(object):
  545. """
  546. A base class for loggers and handlers which allows them to share
  547. common code.
  548. """
  549. """过滤器容器。容纳多个Filter实例,并提供方法判断LogRecord实例是否能通过全部Filter实例的筛选"""
  550. def __init__(self):
  551. """
  552. Initialize the list of filters to be an empty list.
  553. """
  554. self.filters = []
  555. def addFilter(self, filter):
  556. """
  557. Add the specified filter to this handler.
  558. """
  559. if not (filter in self.filters):
  560. self.filters.append(filter)
  561. def removeFilter(self, filter):
  562. """
  563. Remove the specified filter from this handler.
  564. """
  565. if filter in self.filters:
  566. self.filters.remove(filter)
  567. def filter(self, record):
  568. """
  569. Determine if a record is loggable by consulting all the filters.
  570. The default is to allow the record to be logged; any filter can veto
  571. this and the record is then dropped. Returns a zero value if a record
  572. is to be dropped, else non-zero.
  573. """
  574. rv = 1
  575. for f in self.filters:
  576. if not f.filter(record):
  577. rv = 0
  578. break
  579. return rv
  580. #---------------------------------------------------------------------------
  581. # Handler classes and functions
  582. #---------------------------------------------------------------------------
  583. _handlers = weakref.WeakValueDictionary() #map of handler names to handlers
  584. _handlerList = [] # added to allow handlers to be removed in reverse of order initialized
  585. def _removeHandlerRef(wr):
  586. """
  587. Remove a handler reference from the internal cleanup list.
  588. """
  589. """将Hander实例的弱引用从_handlerList中删除,Handler实例被清理时被调用"""
  590. # This function can be called during module teardown, when globals are
  591. # set to None. It can also be called from another thread. So we need to
  592. # pre-emptively grab the necessary globals and check if they're None,
  593. # to prevent race conditions and failures during interpreter shutdown.
  594. acquire, release, handlers = _acquireLock, _releaseLock, _handlerList
  595. if acquire and release and handlers:
  596. acquire()
  597. try:
  598. if wr in handlers:
  599. handlers.remove(wr)
  600. finally:
  601. release()
  602. def _addHandlerRef(handler):
  603. """
  604. Add a handler to the internal cleanup list using a weak reference.
  605. """
  606. """为Handler实例创建弱引用,保存至_handlerList。以便程序退出时清理,释放资源"""
  607. _acquireLock()
  608. try:
  609. _handlerList.append(weakref.ref(handler, _removeHandlerRef))
  610. finally:
  611. _releaseLock()
  612. class Handler(Filterer):
  613. """
  614. Handler instances dispatch logging events to specific destinations.
  615. The base handler class. Acts as a placeholder which defines the Handler
  616. interface. Handlers can optionally use Formatter instances to format
  617. records as desired. By default, no formatter is specified; in this case,
  618. the 'raw' message as determined by record.message is logged.
  619. """
  620. """输出处理器。每个Handler实例代表一条输出途径,控制着日志能否输出、如何输出"""
  621. def __init__(self, level=NOTSET):
  622. """
  623. Initializes the instance - basically setting the formatter to None
  624. and the filter list to empty.
  625. """
  626. Filterer.__init__(self)
  627. self._name = None
  628. self.level = _checkLevel(level)
  629. self.formatter = None
  630. # Add the handler to the global _handlerList (for cleanup on shutdown)
  631. # 每个Handler实例创建时都创建并保留指向自己的弱引用,以便程序退出时检查清理。Handler实例多包含文件句柄等系统资源,不及时释放可能导致一些问题。
  632. _addHandlerRef(self)
  633. self.createLock()
  634. def get_name(self):
  635. return self._name
  636. def set_name(self, name):
  637. # 同名handler覆盖
  638. _acquireLock()
  639. try:
  640. if self._name in _handlers:
  641. del _handlers[self._name]
  642. self._name = name
  643. if name:
  644. _handlers[name] = self
  645. finally:
  646. _releaseLock()
  647. # 通过property函数,我们可以使用"."操作符,像操作属性一样调用get/set方法
  648. name = property(get_name, set_name)
  649. # Handler实例被同类LogRecord实例公用,Handler实例的日志输出通道实际也是被公用的,因此需要实例级别锁来保证线程安全
  650. def createLock(self):
  651. """
  652. Acquire a thread lock for serializing access to the underlying I/O.
  653. """
  654. if thread:
  655. self.lock = threading.RLock()
  656. else:
  657. self.lock = None
  658. def acquire(self):
  659. """
  660. Acquire the I/O thread lock.
  661. """
  662. if self.lock:
  663. self.lock.acquire()
  664. def release(self):
  665. """
  666. Release the I/O thread lock.
  667. """
  668. if self.lock:
  669. self.lock.release()
  670. def setLevel(self, level):
  671. """
  672. Set the logging level of this handler.
  673. """
  674. self.level = _checkLevel(level)
  675. def format(self, record):
  676. """
  677. Format the specified record.
  678. If a formatter is set, use it. Otherwise, use the default formatter
  679. for the module.
  680. """
  681. if self.formatter:
  682. fmt = self.formatter
  683. else:
  684. fmt = _defaultFormatter
  685. return fmt.format(record)
  686. def emit(self, record):
  687. """
  688. Do whatever it takes to actually log the specified logging record.
  689. This version is intended to be implemented by subclasses and so
  690. raises a NotImplementedError.
  691. """
  692. """输出日志的方法。由子类具体实现。"""
  693. raise NotImplementedError('emit must be implemented '
  694. 'by Handler subclasses')
  695. def handle(self, record):
  696. """
  697. Conditionally emit the specified logging record.
  698. Emission depends on filters which may have been added to the handler.
  699. Wrap the actual emission of the record with acquisition/release of
  700. the I/O thread lock. Returns whether the filter passed the record for
  701. emission.
  702. """
  703. """
  704. 日志能够输出的第四层过滤条件:日志级别是否满足handler中过滤器的要求
  705. 处于阻塞状态,知道获取日志输出通道使用权后才可以输出,输出完毕释放通道使用权
  706. """
  707. rv = self.filter(record)
  708. if rv:
  709. self.acquire()
  710. try:
  711. self.emit(record)
  712. finally:
  713. self.release()
  714. return rv
  715. def setFormatter(self, fmt):
  716. """
  717. Set the formatter for this handler.
  718. """
  719. self.formatter = fmt
  720. def flush(self):
  721. """
  722. Ensure all logging output has been flushed.
  723. This version does nothing and is intended to be implemented by
  724. subclasses.
  725. """
  726. pass
  727. def close(self):
  728. """
  729. Tidy up any resources used by the handler.
  730. This version removes the handler from an internal map of handlers,
  731. _handlers, which is used for handler lookup by name. Subclasses
  732. should ensure that this gets called from overridden close()
  733. methods.
  734. """
  735. #get the module data lock, as we're updating a shared structure.
  736. _acquireLock()
  737. try: #unlikely to raise an exception, but you never know...
  738. if self._name and self._name in _handlers:
  739. del _handlers[self._name]
  740. finally:
  741. _releaseLock()
  742. def handleError(self, record):
  743. """
  744. Handle errors which occur during an emit() call.
  745. This method should be called from handlers when an exception is
  746. encountered during an emit() call. If raiseExceptions is false,
  747. exceptions get silently ignored. This is what is mostly wanted
  748. for a logging system - most users will not care about errors in
  749. the logging system, they are more interested in application errors.
  750. You could, however, replace this with a custom handler if you wish.
  751. The record which was being processed is passed in to this method.
  752. """
  753. """日志输出过程中的异常处理:不可以打断程序正常运行;logging未被设置为静默状态时,尝试向标准错误流输出异常内容"""
  754. if raiseExceptions and sys.stderr: # see issue 13807
  755. ei = sys.exc_info()
  756. try:
  757. traceback.print_exception(ei[0], ei[1], ei[2],
  758. None, sys.stderr)
  759. sys.stderr.write('Logged from file %s, line %s\n' % (
  760. record.filename, record.lineno))
  761. except IOError:
  762. pass # see issue 5971
  763. finally:
  764. del ei
  765. class StreamHandler(Handler):
  766. """
  767. A handler class which writes logging records, appropriately formatted,
  768. to a stream. Note that this class does not close the stream, as
  769. sys.stdout or sys.stderr may be used.
  770. """
  771. """Handler类的子类。关注emit()方法即可。"""
  772. def __init__(self, stream=None):
  773. """
  774. Initialize the handler.
  775. If stream is not specified, sys.stderr is used.
  776. """
  777. Handler.__init__(self)
  778. if stream is None:
  779. stream = sys.stderr
  780. self.stream = stream
  781. def flush(self):
  782. """
  783. Flushes the stream.
  784. """
  785. self.acquire()
  786. try:
  787. if self.stream and hasattr(self.stream, "flush"):
  788. self.stream.flush()
  789. finally:
  790. self.release()
  791. def emit(self, record):
  792. """
  793. Emit a record.
  794. If a formatter is specified, it is used to format the record.
  795. The record is then written to the stream with a trailing newline. If
  796. exception information is present, it is formatted using
  797. traceback.print_exception and appended to the stream. If the stream
  798. has an 'encoding' attribute, it is used to determine how to do the
  799. output to the stream.
  800. """
  801. """关注对编码的处理"""
  802. try:
  803. msg = self.format(record)
  804. stream = self.stream
  805. fs = "%s\n"
  806. if not _unicode: #if no unicode support...
  807. stream.write(fs % msg)
  808. else:
  809. try:
  810. if (isinstance(msg, unicode) and
  811. getattr(stream, 'encoding', None)):
  812. ufs = u'%s\n'
  813. try:
  814. stream.write(ufs % msg)
  815. except UnicodeEncodeError:
  816. #Printing to terminals sometimes fails. For example,
  817. #with an encoding of 'cp1251', the above write will
  818. #work if written to a stream opened or wrapped by
  819. #the codecs module, but fail when writing to a
  820. #terminal even when the codepage is set to cp1251.
  821. #An extra encoding step seems to be needed.
  822. stream.write((ufs % msg).encode(stream.encoding))
  823. else:
  824. stream.write(fs % msg)
  825. except UnicodeError:
  826. stream.write(fs % msg.encode("UTF-8"))
  827. self.flush()
  828. except (KeyboardInterrupt, SystemExit):
  829. raise
  830. except:
  831. self.handleError(record)
  832. class FileHandler(StreamHandler):
  833. """
  834. A handler class which writes formatted logging records to disk files.
  835. """
  836. """StreamHeadler类的子类。关注_open()方法,关注对编码的处理"""
  837. def __init__(self, filename, mode='a', encoding=None, delay=0):
  838. """
  839. Open the specified file and use it as the stream for logging.
  840. """
  841. #keep the absolute path, otherwise derived classes which use this
  842. #may come a cropper when the current directory changes
  843. if codecs is None:
  844. encoding = None
  845. self.baseFilename = os.path.abspath(filename)
  846. self.mode = mode
  847. self.encoding = encoding
  848. self.delay = delay
  849. if delay:
  850. #We don't open the stream, but we still need to call the
  851. #Handler constructor to set level, formatter, lock etc.
  852. Handler.__init__(self)
  853. self.stream = None
  854. else:
  855. StreamHandler.__init__(self, self._open())
  856. def close(self):
  857. """
  858. Closes the stream.
  859. """
  860. self.acquire()
  861. try:
  862. try:
  863. if self.stream:
  864. try:
  865. self.flush()
  866. finally:
  867. stream = self.stream
  868. self.stream = None
  869. if hasattr(stream, "close"):
  870. stream.close()
  871. finally:
  872. # Issue #19523: call unconditionally to
  873. # prevent a handler leak when delay is set
  874. StreamHandler.close(self)
  875. finally:
  876. self.release()
  877. def _open(self):
  878. """
  879. Open the current base file with the (original) mode and encoding.
  880. Return the resulting stream.
  881. """
  882. if self.encoding is None:
  883. stream = open(self.baseFilename, self.mode)
  884. else:
  885. stream = codecs.open(self.baseFilename, self.mode, self.encoding)
  886. return stream
  887. def emit(self, record):
  888. """
  889. Emit a record.
  890. If the stream was not opened because 'delay' was specified in the
  891. constructor, open it before calling the superclass's emit.
  892. """
  893. if self.stream is None:
  894. self.stream = self._open()
  895. StreamHandler.emit(self, record)
  896. #---------------------------------------------------------------------------
  897. # Manager classes and functions
  898. #---------------------------------------------------------------------------
  899. class PlaceHolder(object):
  900. """
  901. PlaceHolder instances are used in the Manager logger hierarchy to take
  902. the place of nodes for which no loggers have been defined. This class is
  903. intended for internal use only and not as part of the public API.
  904. """
  905. """
  906. 占位符。logging模块将所有Logger实例以嵌套的关系组织在一起,Logger实例的部分属性按照嵌套关系向上继承。声明Logger实例时并不需要按照嵌套关系一层层声明全部需要的Logger实例,跨级声明时,原来不存在的上层Logger实例使用PlaceHolder实例替代
  907. 嵌套关系使用类似于Python/Java Package的形式,即靠name属性在逻辑上定义嵌套关系,而不依赖链表指针。但Logger实例中包含指向上层第一个Logger实例的指针(parent属性)。通过PlaceHolder实例,在插入Logger实例时,可以比较方便得处理上下层嵌套关系。
  908. """
  909. def __init__(self, alogger):
  910. """
  911. Initialize with the specified logger being a child of this placeholder.
  912. """
  913. #self.loggers = [alogger]
  914. 1self.loggerMap = { alogger : None } # key为位于占位符下层的Logger实例的引用。PlaceHolder被实例化,必然存在一个Logger实例跨级创建,该Logger实例必然位于此PlaceHolder实例的下层、
  915. def append(self, alogger):
  916. """
  917. Add the specified logger as a child of this placeholder.
  918. """
  919. #if alogger not in self.loggers:
  920. if alogger not in self.loggerMap:
  921. #self.loggers.append(alogger)
  922. self.loggerMap[alogger] = None
  923. #
  924. # Determine which class to use when instantiating loggers.
  925. #
  926. _loggerClass = None
  927. def setLoggerClass(klass):
  928. """
  929. Set the class to be used when instantiating a logger. The class should
  930. define __init__() such that only a name argument is required, and the
  931. __init__() should call Logger.__init__()
  932. """
  933. """设置默认logger类"""
  934. if klass != Logger:
  935. if not issubclass(klass, Logger):
  936. raise TypeError("logger not derived from logging.Logger: "
  937. + klass.__name__)
  938. global _loggerClass
  939. _loggerClass = klass
  940. def getLoggerClass():
  941. """
  942. Return the class to be used when instantiating a logger.
  943. """
  944. return _loggerClass
  945. class Manager(object):
  946. """
  947. There is [under normal circumstances] just one Manager instance, which
  948. holds the hierarchy of loggers.
  949. """
  950. """日志实例(Logger)管理类。有且仅有一个Manager实例,用于维护Logger实例的嵌套关系。"""
  951. def __init__(self, rootnode):
  952. """
  953. Initialize the manager with the root node of the logger hierarchy.
  954. """
  955. self.root = rootnode # 根节点
  956. self.disable = 0 # 限制可输出的日志级别。只有级别高于disable属性的日志才可能被输出
  957. self.emittedNoHandlerWarning = 0 # 标记位,标记是否有logger存在无handler可用,并且异常被输出至sys.stderr的情况
  958. self.loggerDict = {} # 维护全部Logger实例,Logger.name: Logger
  959. self.loggerClass = None # 指定创建日志实例时使用的类,优先级最高,设置后可以覆盖_loggerClass
  960. def getLogger(self, name):
  961. """
  962. Get a logger with the specified name (channel name), creating it
  963. if it doesn't yet exist. This name is a dot-separated hierarchical
  964. name, such as "a", "a.b", "a.b.c" or similar.
  965. If a PlaceHolder existed for the specified name [i.e. the logger
  966. didn't exist but a child of it did], replace it with the created
  967. logger and fix up the parent/child references which pointed to the
  968. placeholder to now point to the logger.
  969. """
  970. """根据name,在self.loggerDict中搜索并返回logger实例。不存在则先创建并插入再返回;存在但不是Logger实例,是PlaceHolder实例,则先创建并替换再返回"""
  971. rv = None
  972. if not isinstance(name, basestring):
  973. raise TypeError('A logger name must be string or Unicode')
  974. if isinstance(name, unicode):
  975. name = name.encode('utf-8')
  976. _acquireLock()
  977. try:
  978. if name in self.loggerDict:
  979. rv = self.loggerDict[name]
  980. if isinstance(rv, PlaceHolder):
  981. ph = rv
  982. rv = (self.loggerClass or _loggerClass)(name)
  983. rv.manager = self
  984. self.loggerDict[name] = rv
  985. self._fixupChildren(ph, rv)
  986. self._fixupParents(rv)
  987. else:
  988. rv = (self.loggerClass or _loggerClass)(name)
  989. rv.manager = self
  990. self.loggerDict[name] = rv
  991. self._fixupParents(rv)
  992. finally:
  993. _releaseLock()
  994. return rv
  995. def setLoggerClass(self, klass):
  996. """
  997. Set the class to be used when instantiating a logger with this Manager.
  998. """
  999. """类似于全局方法setLoggerClass()"""
  1000. if klass != Logger:
  1001. if not issubclass(klass, Logger):
  1002. raise TypeError("logger not derived from logging.Logger: "
  1003. + klass.__name__)
  1004. self.loggerClass = klass
  1005. def _fixupParents(self, alogger):
  1006. """
  1007. Ensure that there are either loggers or placeholders all the way
  1008. from the specified logger to the root of the logger hierarchy.
  1009. """
  1010. """
  1011. 在嵌套结构中向上修复因插入新Logger实例导致的错误:
  1012. 1、延嵌套结构向上,完善嵌套结构的每一层,不存在的就创建PlaceHolder实例
  1013. 2、新节点的parent属性指向眼嵌套结构向上第一个Logger对象,没有找到则指向根节点
  1014. 3、将新节点添加为新节点及其parent属性指向节点间所有PlaceHolder实例的子节点
  1015. """
  1016. name = alogger.name
  1017. i = name.rfind(".")
  1018. rv = None
  1019. while (i > 0) and not rv:
  1020. substr = name[:i]
  1021. if substr not in self.loggerDict:
  1022. self.loggerDict[substr] = PlaceHolder(alogger)
  1023. else:
  1024. obj = self.loggerDict[substr]
  1025. if isinstance(obj, Logger):
  1026. rv = obj
  1027. else:
  1028. assert isinstance(obj, PlaceHolder)
  1029. obj.append(alogger)
  1030. i = name.rfind(".", 0, i - 1)
  1031. if not rv:
  1032. rv = self.root
  1033. alogger.parent = rv
  1034. def _fixupChildren(self, ph, alogger):
  1035. """
  1036. Ensure that children of the placeholder ph are connected to the
  1037. specified logger.
  1038. 使用logger实例替换层次结构中的占位符以后,要注意修改被替换占位符子节点的parent属性,毕竟parent属性指向的是它层次机构之上第一个logger实例
  1039. 修改logger实例的parent属性应该只是顺便写一下,毕竟无论替换还是插入logger,都需要调用_fixupParents()方法,而在_fixupParents()方法中做了类似的事情
  1040. """
  1041. """
  1042. 在嵌套结构中向下修复因插入新Logger实例导致的错误:
  1043. 1、新插入Logger实例未取代原有PlaceHolder实例,无需调用该方法
  1044. 2、嵌套结构向下第一个Logger对象的parent属性指向新插入的Logger实例
  1045. """
  1046. name = alogger.name
  1047. namelen = len(name)
  1048. for c in ph.loggerMap.keys():
  1049. #The if means ... if not c.parent.name.startswith(nm)
  1050. if c.parent.name[:namelen] != name:
  1051. alogger.parent = c.parent
  1052. c.parent = alogger
  1053. #---------------------------------------------------------------------------
  1054. # Logger classes and functions
  1055. #---------------------------------------------------------------------------
  1056. class Logger(Filterer):
  1057. """
  1058. Instances of the Logger class represent a single logging channel. A
  1059. "logging channel" indicates an area of an application. Exactly how an
  1060. "area" is defined is up to the application developer. Since an
  1061. application can have any number of areas, logging channels are identified
  1062. by a unique string. Application areas can be nested (e.g. an area
  1063. of "input processing" might include sub-areas "read CSV files", "read
  1064. XLS files" and "read Gnumeric files"). To cater for this natural nesting,
  1065. channel names are organized into a namespace hierarchy where levels are
  1066. separated by periods, much like the Java or Python package namespace. So
  1067. in the instance given above, channel names might be "input" for the upper
  1068. level, and "input.csv", "input.xls" and "input.gnu" for the sub-levels.
  1069. There is no arbitrary limit to the depth of nesting.
  1070. """
  1071. """
  1072. 日志类。logging模块暴露给用户的接口类,不同Logger实例在Manager实例中以嵌套形式组织,以便level、handlers等属性向上继承。
  1073. """
  1074. def __init__(self, name, level=NOTSET):
  1075. """
  1076. Initialize the logger with a name and an optional level.
  1077. """
  1078. Filterer.__init__(self)
  1079. self.name = name
  1080. self.level = _checkLevel(level)
  1081. self.parent = None # 上层Logger实例
  1082. self.propagate = 1 # logger是否允许递归像层次结构中的上一层获取handler
  1083. self.handlers = []
  1084. self.disabled = 0 # logger是否允许输出日志
  1085. def setLevel(self, level):
  1086. """
  1087. Set the logging level of this logger.
  1088. """
  1089. self.level = _checkLevel(level)
  1090. def debug(self, msg, *args, **kwargs):
  1091. """
  1092. Log 'msg % args' with severity 'DEBUG'.
  1093. To pass exception information, use the keyword argument exc_info with
  1094. a true value, e.g.
  1095. logger.debug("Houston, we have a %s", "thorny problem", exc_info=1)
  1096. """
  1097. if self.isEnabledFor(DEBUG):
  1098. self._log(DEBUG, msg, args, **kwargs)
  1099. def info(self, msg, *args, **kwargs):
  1100. """
  1101. Log 'msg % args' with severity 'INFO'.
  1102. To pass exception information, use the keyword argument exc_info with
  1103. a true value, e.g.
  1104. logger.info("Houston, we have a %s", "interesting problem", exc_info=1)
  1105. """
  1106. if self.isEnabledFor(INFO):
  1107. self._log(INFO, msg, args, **kwargs)
  1108. def warning(self, msg, *args, **kwargs):
  1109. """
  1110. Log 'msg % args' with severity 'WARNING'.
  1111. To pass exception information, use the keyword argument exc_info with
  1112. a true value, e.g.
  1113. logger.warning("Houston, we have a %s", "bit of a problem", exc_info=1)
  1114. """
  1115. if self.isEnabledFor(WARNING):
  1116. self._log(WARNING, msg, args, **kwargs)
  1117. warn = warning
  1118. def error(self, msg, *args, **kwargs):
  1119. """
  1120. Log 'msg % args' with severity 'ERROR'.
  1121. To pass exception information, use the keyword argument exc_info with
  1122. a true value, e.g.
  1123. logger.error("Houston, we have a %s", "major problem", exc_info=1)
  1124. """
  1125. if self.isEnabledFor(ERROR):
  1126. self._log(ERROR, msg, args, **kwargs)
  1127. def exception(self, msg, *args, **kwargs):
  1128. """
  1129. Convenience method for logging an ERROR with exception information.
  1130. """
  1131. kwargs['exc_info'] = 1
  1132. self.error(msg, *args, **kwargs)
  1133. def critical(self, msg, *args, **kwargs):
  1134. """
  1135. Log 'msg % args' with severity 'CRITICAL'.
  1136. To pass exception information, use the keyword argument exc_info with
  1137. a true value, e.g.
  1138. logger.critical("Houston, we have a %s", "major disaster", exc_info=1)
  1139. """
  1140. if self.isEnabledFor(CRITICAL):
  1141. self._log(CRITICAL, msg, args, **kwargs)
  1142. fatal = critical
  1143. def log(self, level, msg, *args, **kwargs):
  1144. """
  1145. Log 'msg % args' with the integer severity 'level'.
  1146. To pass exception information, use the keyword argument exc_info with
  1147. a true value, e.g.
  1148. logger.log(level, "We have a %s", "mysterious problem", exc_info=1)
  1149. """
  1150. """
  1151. 创建日志。
  1152. 参数含义:
  1153. level——日志级别,数字,可以是默认级别、自定义级别甚至未定义的级别,未定义级别在声明LogRecord实例时可能会有问题
  1154. msg——日志主体内容或主体内容的格式
  1155. args——填充主体内容格式的参数
  1156. kwargs——仅支持exc_info和extra两个参数。exc_info为非0值时输出的日志将附带上一个被输出的异常的函数调用关系;extta被用来扩展LogRecord实例的属性
  1157. debug()/info()/warn()/warning()/error()/exception()/critical()/fatal()是log()函数使用默认级别的具体形式而已
  1158. """
  1159. if not isinstance(level, int):
  1160. if raiseExceptions:
  1161. raise TypeError("level must be an integer")
  1162. else:
  1163. return
  1164. if self.isEnabledFor(level):
  1165. self._log(level, msg, args, **kwargs)
  1166. def findCaller(self):
  1167. """
  1168. Find the stack frame of the caller so that we can note the source
  1169. file name, line number and function name.
  1170. """
  1171. """由函数调用栈中logging模块的某一层开始,向调用者方向追溯,通过比对所在文件名判断是否跳出logging模块,第一层跳出logging模块的函数即为logging模块的调用者,返回调用者的文件名、行号、函数名"""
  1172. f = currentframe()
  1173. #On some versions of IronPython, currentframe() returns None if
  1174. #IronPython isn't run with -X:Frames.
  1175. if f is not None:
  1176. f = f.f_back
  1177. rv = "(unknown file)", 0, "(unknown function)"
  1178. while hasattr(f, "f_code"):
  1179. co = f.f_code
  1180. filename = os.path.normcase(co.co_filename)
  1181. if filename == _srcfile:
  1182. f = f.f_back
  1183. continue
  1184. rv = (co.co_filename, f.f_lineno, co.co_name)
  1185. break
  1186. return rv
  1187. def makeRecord(self, name, level, fn, lno, msg, args, exc_info, func=None, extra=None):
  1188. """
  1189. A factory method which can be overridden in subclasses to create
  1190. specialized LogRecords.
  1191. """
  1192. """声明LogRecord对象"""
  1193. rv = LogRecord(name, level, fn, lno, msg, args, exc_info, func)
  1194. if extra is not None: # 通过extra属性,可以为LogRecord对象添加未定义的属性,结合LoggerAdapter类和Formatter类,可以实现在日志文本中使用自定义的内容(s = self._fmt % record.__dict__)
  1195. for key in extra:
  1196. if (key in ["message", "asctime"]) or (key in rv.__dict__):
  1197. raise KeyError("Attempt to overwrite %r in LogRecord" % key)
  1198. rv.__dict__[key] = extra[key]
  1199. return rv
  1200. def _log(self, level, msg, args, exc_info=None, extra=None):
  1201. """
  1202. Low-level logging routine which creates a LogRecord and then calls
  1203. all the handlers of this logger to handle the record.
  1204. """
  1205. """收集信息,声明LogRecord实例,调用输出处理函数"""
  1206. if _srcfile: # _srcfile不存在的话,findCaller()函数的功能无法完成
  1207. #IronPython doesn't track Python frames, so findCaller raises an
  1208. #exception on some versions of IronPython. We trap it here so that
  1209. #IronPython can use logging.
  1210. try:
  1211. fn, lno, func = self.findCaller()
  1212. except ValueError:
  1213. fn, lno, func = "(unknown file)", 0, "(unknown function)"
  1214. else:
  1215. fn, lno, func = "(unknown file)", 0, "(unknown function)"
  1216. if exc_info: # 通过将exc_info设置为一个布尔真的值,可以输出上一个异常的函数调用信息
  1217. if not isinstance(exc_info, tuple):
  1218. exc_info = sys.exc_info()
  1219. record = self.makeRecord(self.name, level, fn, lno, msg, args, exc_info, func, extra)
  1220. self.handle(record)
  1221. def handle(self, record):
  1222. """
  1223. Call the handlers for the specified record.
  1224. This method is used for unpickled records received from a socket, as
  1225. well as those created locally. Logger-level filtering is applied.
  1226. """
  1227. """日志能够输出的第二个过滤条件:Logger实例是否允许输出日志;是否满足Logger实例的过滤条件"""
  1228. if (not self.disabled) and self.filter(record):
  1229. self.callHandlers(record)
  1230. def addHandler(self, hdlr):
  1231. """
  1232. Add the specified handler to this logger.
  1233. """
  1234. _acquireLock()
  1235. try:
  1236. if not (hdlr in self.handlers):
  1237. self.handlers.append(hdlr)
  1238. finally:
  1239. _releaseLock()
  1240. def removeHandler(self, hdlr):
  1241. """
  1242. Remove the specified handler from this logger.
  1243. """
  1244. _acquireLock()
  1245. try:
  1246. if hdlr in self.handlers:
  1247. self.handlers.remove(hdlr)
  1248. finally:
  1249. _releaseLock()
  1250. def callHandlers(self, record):
  1251. """
  1252. Pass a record to all relevant handlers.
  1253. Loop through all handlers for this logger and its parents in the
  1254. logger hierarchy. If no handler was found, output a one-off error
  1255. message to sys.stderr. Stop searching up the hierarchy whenever a
  1256. logger with the "propagate" attribute set to zero is found - that
  1257. will be the last logger whose handlers are called.
  1258. """
  1259. """
  1260. 在允许的范围内(bool(propagate)==True),递归的获取当前Logger实例及上层Logger实例的handler,并分别调用handler进行输出。
  1261. 没有可用handler,视条件决定是否输出错误日志并记录
  1262. 日志能够输出的第三个过滤条件:日志级别是否高于handler级别
  1263. """
  1264. c = self
  1265. found = 0
  1266. while c:
  1267. for hdlr in c.handlers:
  1268. found = found + 1
  1269. if record.levelno >= hdlr.level:
  1270. hdlr.handle(record)
  1271. if not c.propagate:
  1272. c = None #break out
  1273. else:
  1274. c = c.parent
  1275. if (found == 0) and raiseExceptions and not self.manager.emittedNoHandlerWarning: # 只要曾经有logger存在无可用handler的问题,之后再出现就不会再输出错误了,因为 and not self.manager.emittedNoHandlerWarning
  1276. sys.stderr.write("No handlers could be found for logger"
  1277. " \"%s\"\n" % self.name)
  1278. self.manager.emittedNoHandlerWarning = 1
  1279. def getEffectiveLevel(self):
  1280. """
  1281. Get the effective level for this logger.
  1282. Loop through this logger and its parents in the logger hierarchy,
  1283. looking for a non-zero logging level. Return the first one found.
  1284. """
  1285. """
  1286. 获取当前Logger实例的级别(向上继承),默认设置为notice(Manager实例根节点级别为Warning)
  1287. """
  1288. logger = self
  1289. while logger:
  1290. if logger.level:
  1291. return logger.level
  1292. logger = logger.parent
  1293. return NOTSET
  1294. def isEnabledFor(self, level):
  1295. """
  1296. Is this logger enabled for level 'level'?
  1297. """
  1298. """
  1299. 根据日志等级判断是否允许输出,包含两方面的判断:
  1300. 1、高于manager设置的日志级别下限;高于logger的级别
  1301. 2、级别小于当前logger级别的不允许输出,logger的级别由Logger.level属性决定,若未设置就根据层次结构向上查询,查到位置,注意,Logger默认设置日志级别为notice
  1302. 影响日志能否输出的第一层过滤
  1303. """
  1304. if self.manager.disable >= level:
  1305. return 0
  1306. return level >= self.getEffectiveLevel()
  1307. def getChild(self, suffix):
  1308. """
  1309. Get a logger which is a descendant to this one.
  1310. This is a convenience method, such that
  1311. logging.getLogger('abc').getChild('def.ghi')
  1312. is the same as
  1313. logging.getLogger('abc.def.ghi')
  1314. It's useful, for example, when the parent logger is named using
  1315. __name__ rather than a literal string.
  1316. """
  1317. """
  1318. 通过指定后缀,返回当前logger节点的子节点
  1319. """
  1320. if self.root is not self:
  1321. suffix = '.'.join((self.name, suffix))
  1322. return self.manager.getLogger(suffix)
  1323. class RootLogger(Logger):
  1324. """
  1325. A root logger is not that different to any other logger, except that
  1326. it must have a logging level and there is only one instance of it in
  1327. the hierarchy.
  1328. """
  1329. def __init__(self, level):
  1330. """
  1331. Initialize the logger with the name "root".
  1332. """
  1333. Logger.__init__(self, "root", level)
  1334. _loggerClass = Logger
  1335. class LoggerAdapter(object):
  1336. """
  1337. An adapter for loggers which makes it easier to specify contextual
  1338. information in logging output.
  1339. """
  1340. """
  1341. 对Logger实例再进行一次封装。为该Logger实例创建的LogRecord实例提供额外属性。可以结合Fomatter类将额外提供的属性输出为最终日志。
  1342. """
  1343. def __init__(self, logger, extra):
  1344. """
  1345. Initialize the adapter with a logger and a dict-like object which
  1346. provides contextual information. This constructor signature allows
  1347. easy stacking of LoggerAdapters, if so desired.
  1348. You can effectively pass keyword arguments as shown in the
  1349. following example:
  1350. adapter = LoggerAdapter(someLogger, dict(p1=v1, p2="v2"))
  1351. """
  1352. self.logger = logger
  1353. self.extra = extra
  1354. def process(self, msg, kwargs):
  1355. """
  1356. Process the logging message and keyword arguments passed in to
  1357. a logging call to insert contextual information. You can either
  1358. manipulate the message itself, the keyword args or both. Return
  1359. the message and kwargs modified (or not) to suit your needs.
  1360. Normally, you'll only need to override this one method in a
  1361. LoggerAdapter subclass for your specific needs.
  1362. """
  1363. kwargs["extra"] = self.extra
  1364. return msg, kwargs
  1365. def debug(self, msg, *args, **kwargs):
  1366. """
  1367. Delegate a debug call to the underlying logger, after adding
  1368. contextual information from this adapter instance.
  1369. """
  1370. msg, kwargs = self.process(msg, kwargs)
  1371. self.logger.debug(msg, *args, **kwargs)
  1372. def info(self, msg, *args, **kwargs):
  1373. """
  1374. Delegate an info call to the underlying logger, after adding
  1375. contextual information from this adapter instance.
  1376. """
  1377. msg, kwargs = self.process(msg, kwargs)
  1378. self.logger.info(msg, *args, **kwargs)
  1379. def warning(self, msg, *args, **kwargs):
  1380. """
  1381. Delegate a warning call to the underlying logger, after adding
  1382. contextual information from this adapter instance.
  1383. """
  1384. msg, kwargs = self.process(msg, kwargs)
  1385. self.logger.warning(msg, *args, **kwargs)
  1386. def error(self, msg, *args, **kwargs):
  1387. """
  1388. Delegate an error call to the underlying logger, after adding
  1389. contextual information from this adapter instance.
  1390. """
  1391. msg, kwargs = self.process(msg, kwargs)
  1392. self.logger.error(msg, *args, **kwargs)
  1393. def exception(self, msg, *args, **kwargs):
  1394. """
  1395. Delegate an exception call to the underlying logger, after adding
  1396. contextual information from this adapter instance.
  1397. """
  1398. msg, kwargs = self.process(msg, kwargs)
  1399. kwargs["exc_info"] = 1
  1400. self.logger.error(msg, *args, **kwargs)
  1401. def critical(self, msg, *args, **kwargs):
  1402. """
  1403. Delegate a critical call to the underlying logger, after adding
  1404. contextual information from this adapter instance.
  1405. """
  1406. msg, kwargs = self.process(msg, kwargs)
  1407. self.logger.critical(msg, *args, **kwargs)
  1408. def log(self, level, msg, *args, **kwargs):
  1409. """
  1410. Delegate a log call to the underlying logger, after adding
  1411. contextual information from this adapter instance.
  1412. """
  1413. msg, kwargs = self.process(msg, kwargs)
  1414. self.logger.log(level, msg, *args, **kwargs)
  1415. def isEnabledFor(self, level):
  1416. """
  1417. See if the underlying logger is enabled for the specified level.
  1418. """
  1419. return self.logger.isEnabledFor(level)
  1420. root = RootLogger(WARNING)
  1421. # 为Logger类添加一个类属性
  1422. Logger.root = root
  1423. Logger.manager = Manager(Logger.root)
  1424. #---------------------------------------------------------------------------
  1425. # Configuration classes and functions
  1426. #---------------------------------------------------------------------------
  1427. BASIC_FORMAT = "%(levelname)s:%(name)s:%(message)s"
  1428. def basicConfig(**kwargs):
  1429. """
  1430. Do basic configuration for the logging system.
  1431. This function does nothing if the root logger already has handlers
  1432. configured. It is a convenience method intended for use by simple scripts
  1433. to do one-shot configuration of the logging package.
  1434. The default behaviour is to create a StreamHandler which writes to
  1435. sys.stderr, set a formatter using the BASIC_FORMAT format string, and
  1436. add the handler to the root logger.
  1437. A number of optional keyword arguments may be specified, which can alter
  1438. the default behaviour.
  1439. filename Specifies that a FileHandler be created, using the specified
  1440. filename, rather than a StreamHandler.
  1441. filemode Specifies the mode to open the file, if filename is specified
  1442. (if filemode is unspecified, it defaults to 'a').
  1443. format Use the specified format string for the handler.
  1444. datefmt Use the specified date/time format.
  1445. level Set the root logger level to the specified level.
  1446. stream Use the specified stream to initialize the StreamHandler. Note
  1447. that this argument is incompatible with 'filename' - if both
  1448. are present, 'stream' is ignored.
  1449. Note that you could specify a stream created using open(filename, mode)
  1450. rather than passing the filename and mode in. However, it should be
  1451. remembered that StreamHandler does not close its stream (since it may be
  1452. using sys.stdout or sys.stderr), whereas FileHandler closes its stream
  1453. when the handler is closed.
  1454. """
  1455. """配置根节点"""
  1456. # Add thread safety in case someone mistakenly calls
  1457. # basicConfig() from multiple threads
  1458. _acquireLock()
  1459. try:
  1460. if len(root.handlers) == 0:
  1461. filename = kwargs.get("filename")
  1462. if filename:
  1463. mode = kwargs.get("filemode", 'a')
  1464. hdlr = FileHandler(filename, mode)
  1465. else:
  1466. stream = kwargs.get("stream")
  1467. hdlr = StreamHandler(stream)
  1468. fs = kwargs.get("format", BASIC_FORMAT)
  1469. dfs = kwargs.get("datefmt", None)
  1470. fmt = Formatter(fs, dfs)
  1471. hdlr.setFormatter(fmt)
  1472. root.addHandler(hdlr)
  1473. level = kwargs.get("level")
  1474. if level is not None:
  1475. root.setLevel(level)
  1476. finally:
  1477. _releaseLock()
  1478. #---------------------------------------------------------------------------
  1479. # Utility functions at module level.
  1480. # Basically delegate everything to the root logger.
  1481. #---------------------------------------------------------------------------
  1482. def getLogger(name=None):
  1483. """
  1484. Return a logger with the specified name, creating it if necessary.
  1485. If no name is specified, return the root logger.
  1486. """
  1487. """
  1488. 用户获取Logger实例的接口方法
  1489. """
  1490. if name:
  1491. return Logger.manager.getLogger(name)
  1492. else:
  1493. return root
  1494. #def getRootLogger():
  1495. # """
  1496. # Return the root logger.
  1497. #
  1498. # Note that getLogger('') now does the same thing, so this function is
  1499. # deprecated and may disappear in the future.
  1500. # """
  1501. # return root
  1502. # 提供了一组函数简便的使用logging模块(基于根节点)
  1503. def critical(msg, *args, **kwargs):
  1504. """
  1505. Log a message with severity 'CRITICAL' on the root logger.
  1506. """
  1507. if len(root.handlers) == 0:
  1508. basicConfig()
  1509. root.critical(msg, *args, **kwargs)
  1510. fatal = critical
  1511. def error(msg, *args, **kwargs):
  1512. """
  1513. Log a message with severity 'ERROR' on the root logger.
  1514. """
  1515. if len(root.handlers) == 0:
  1516. basicConfig()
  1517. root.error(msg, *args, **kwargs)
  1518. def exception(msg, *args, **kwargs):
  1519. """
  1520. Log a message with severity 'ERROR' on the root logger,
  1521. with exception information.
  1522. """
  1523. kwargs['exc_info'] = 1
  1524. error(msg, *args, **kwargs)
  1525. def warning(msg, *args, **kwargs):
  1526. """
  1527. Log a message with severity 'WARNING' on the root logger.
  1528. """
  1529. if len(root.handlers) == 0:
  1530. basicConfig()
  1531. root.warning(msg, *args, **kwargs)
  1532. warn = warning
  1533. def info(msg, *args, **kwargs):
  1534. """
  1535. Log a message with severity 'INFO' on the root logger.
  1536. """
  1537. if len(root.handlers) == 0:
  1538. basicConfig()
  1539. root.info(msg, *args, **kwargs)
  1540. def debug(msg, *args, **kwargs):
  1541. """
  1542. Log a message with severity 'DEBUG' on the root logger.
  1543. """
  1544. if len(root.handlers) == 0:
  1545. basicConfig()
  1546. root.debug(msg, *args, **kwargs)
  1547. def log(level, msg, *args, **kwargs):
  1548. """
  1549. Log 'msg % args' with the integer severity 'level' on the root logger.
  1550. """
  1551. if len(root.handlers) == 0:
  1552. basicConfig()
  1553. root.log(level, msg, *args, **kwargs)
  1554. def disable(level):
  1555. """
  1556. Disable all logging calls of severity 'level' and below.
  1557. """
  1558. root.manager.disable = level
  1559. def shutdown(handlerList=_handlerList):
  1560. """
  1561. Perform any cleanup actions in the logging system (e.g. flushing
  1562. buffers).
  1563. Should be called at application exit.
  1564. """
  1565. """
  1566. 关闭未被释放的Handler实例。用于程序退出前的清理。
  1567. """
  1568. for wr in reversed(handlerList[:]):
  1569. #errors might occur, for example, if files are locked
  1570. #we just ignore them if raiseExceptions is not set
  1571. try:
  1572. h = wr()
  1573. if h:
  1574. try:
  1575. h.acquire()
  1576. h.flush()
  1577. h.close()
  1578. except (IOError, ValueError):
  1579. # Ignore errors which might be caused
  1580. # because handlers have been closed but
  1581. # references to them are still around at
  1582. # application exit.
  1583. pass
  1584. finally:
  1585. h.release()
  1586. except:
  1587. if raiseExceptions:
  1588. raise
  1589. #else, swallow
  1590. #Let's try and shutdown automatically on application exit...
  1591. import atexit
  1592. atexit.register(shutdown) #注册清理函数
  1593. # Null handler
  1594. class NullHandler(Handler):
  1595. """
  1596. This handler does nothing. It's intended to be used to avoid the
  1597. "No handlers could be found for logger XXX" one-off warning. This is
  1598. important for library code, which may contain code to log events. If a user
  1599. of the library does not configure logging, the one-off warning might be
  1600. produced; to avoid this, the library developer simply needs to instantiate
  1601. a NullHandler and add it to the top-level logger of the library module or
  1602. package.
  1603. """
  1604. def handle(self, record):
  1605. pass
  1606. def emit(self, record):
  1607. pass
  1608. def createLock(self):
  1609. self.lock = None
  1610. # Warnings integration
  1611. _warnings_showwarning = None
  1612. def _showwarning(message, category, filename, lineno, file=None, line=None):
  1613. """
  1614. Implementation of showwarnings which redirects to logging, which will first
  1615. check to see if the file parameter is None. If a file is specified, it will
  1616. delegate to the original warnings implementation of showwarning. Otherwise,
  1617. it will call warnings.formatwarning and will log the resulting string to a
  1618. warnings logger named "py.warnings" with level logging.WARNING.
  1619. """
  1620. if file is not None:
  1621. if _warnings_showwarning is not None:
  1622. _warnings_showwarning(message, category, filename, lineno, file, line)
  1623. else:
  1624. s = warnings.formatwarning(message, category, filename, lineno, line)
  1625. logger = getLogger("py.warnings")
  1626. if not logger.handlers:
  1627. logger.addHandler(NullHandler())
  1628. logger.warning("%s", s)
  1629. def captureWarnings(capture):
  1630. """
  1631. If capture is true, redirect all warnings to the logging package.
  1632. If capture is False, ensure that warnings are not redirected to logging
  1633. but to their original destinations.
  1634. """
  1635. global _warnings_showwarning
  1636. if capture:
  1637. if _warnings_showwarning is None:
  1638. _warnings_showwarning = warnings.showwarning
  1639. warnings.showwarning = _showwarning
  1640. else:
  1641. if _warnings_showwarning is not None:
  1642. warnings.showwarning = _warnings_showwarning
  1643. _warnings_showwarning = None

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Li_阴宅/article/detail/781198
推荐阅读
相关标签
  

闽ICP备14008679号