这个模块为应用与库定义了实现灵活的事件日志系统的函数与类.
使用标准库提提供的 logging API 最主要的好处是,所有的 Python 模块都可能参与日志输出(logging),包括你的日志消息和第三方模块的日志消息。
这个模块提供许多强大而灵活的功能。如果你对 logging 不太熟悉的话, 掌握它最好的方式就是查看它对应的教程
该模块定义的基础类和函数都列在下面。
为logging系统设置基础配置,通过创建一个含有默认[Formatter
](https://docs.python.org/3.7/library/logging.html的 StreamHandler
#logging.Formatter)并将其降入根logger。
如果root logger并未定义特殊handler,debug()
, info()
, warning()
, error()
and critical()
会自动调用 basicConfig()
。
如果root logger已经配置handler,那此函数不执行任何操作。
Format | Description |
---|---|
filename | 指定文件名 |
filemode | 指定文件打开方式,‘w’或’a’, Defaults to 'a' . |
format | 指定输出的格式和内容。 %(levelno)s: 打印日志级别的数值 %(levelname)s: 打印日志级别名称 %(pathname)s: 打印当前执行程序的路径,其实就是sys.argv[0] %(filename)s: 打印当前执行程序名 %(funcName)s: 打印日志的当前函数 %(lineno)d: 打印日志的当前行号 %(asctime)s: 打印日志的时间 %(thread)d: 打印线程ID %(threadName)s: 打印线程名称 %(process)d: 打印进程ID %(message)s: 打印日志信息 |
datefmt | 指定时间格式 |
style | If format is specified, use this style for the format string. One of '%' , '{' or '$' for printf-style, str.format() or string.Template respectively. Defaults to '%' . |
level | 指定日志级别。 logging.WARNING 默认 logging.INFO |
stream | Use the specified stream to initialize the StreamHandler. Note that this argument is incompatible with filename - if both are present, a ValueError is raised. |
handlers | If specified, this should be an iterable of already created handlers to add to the root logger. Any handlers which don’t already have a formatter set will be assigned the default formatter created in this function. Note that this argument is incompatible with filename or stream - if both are present, a ValueError is raised. |