介绍
A logger is configured to have a log level. This log level describes the severity of the messages that the logger will handle. Python defines the following log levels:
§ DEBUG: Low level system information for debugging purposes
§ INFO: General system information
§ WARNING: Information describing a minor problem that has occurred.
§ ERROR: Information describing a major problem that has occurred.
§ CRITICAL: Information describing a critical problem that has occurred.
Each message that is written to the logger is a Log Record. Each log record also has a log level indicating the severity of that specific message. A log record can also contain useful metadata that describes the event that is being logged. This can include details such as a stack trace or an error code.
When a message is given to the logger, the log level of the message is compared to the log level of the logger. If the log level of the message meets or exceeds the log level of the logger itself, the message will undergo further processing. If it doesn’t, the message will be ignored.
Once a logger has determined that a message needs to be processed, it is passed to a Handler.
(来源:https://docs.djangoproject.com/en/1.4/topics/logging/ )
简单的范例
#-- coding: utf-8 --
import logging
"""logging的简单使用示例
"""
if __name__ == '__main__':
# 最简单的用法,不推荐直接用logging模块
logging.debug(u'这个不会被打印出来')
logging.info(u'这个也不会被打印出来')
logging.warning(u'这个就会了,因为logging默认的级别是WARNING,低于这个等级的信息就会被忽略')
稍微难一点的范例
#-*- coding: utf-8 -*-
import logging
"""logging的使用示例
"""
if __name__ == '__main__':
# python官方文档中提供的一段示例,使用logging模块产生logger对象
FORMAT = '%(asctime)-15s %(clientip)s %(user)-8s %(message)s'
logging.basicConfig(format = FORMAT)
d = { 'clientip' : '192.168.0.1', 'user' : 'fbloggs' }
# 创建一个日志对象
logger = logging.getLogger('tcpserver')
logger.warning('Protocol problem: %s', 'connection reset', extra = d)
# 设置级别
logger.setLevel(logging.DEBUG)
logger.debug('Hello', extra = d)
复杂一点的用法,为logger添加了若干个handler。
#-*- coding: utf-8 -*-
import logging, logging.config
"""logging的使用示例
"""
if __name__ == '__main__':
# 比较复杂的用法
LOGGING = {
# 版本,总是1
'version': 1,
'disable_existing_loggers': True,
'formatters': {
'verbose': {'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'},
'simple': {'format': '%(levelname)s %(message)s'},
'default': {
'format' : '%(asctime)s %(message)s',
'datefmt' : '%Y-%m-%d %H:%M:%S'
}
},
'handlers': {
'null': {
'level':'DEBUG',
'class':'logging.NullHandler',
},
'console':{
'level':'DEBUG',
'class':'logging.StreamHandler',
'formatter': 'default'
},
'file': {
'level': 'INFO',
# TimedRotatingFileHandler会将日志按一定时间间隔写入文件中,并
# 将文件重命名为'原文件名+时间戮'这样的形式
# Python提供了其它的handler,参考logging.handlers
'class': 'logging.handlers.TimedRotatingFileHandler',
'formatter': 'default',
# 后面这些会以参数的形式传递给TimedRotatingFileHandler的
# 构造器
# filename所在的目录要确保存在
'filename' : 'log',
# 每5分钟刷新一下
'when' : 'M',
'interval' : 1,
'encoding' : 'utf8',
}
},
'loggers' : {
# 定义了一个logger
'mylogger' : {
'level' : 'DEBUG',
'handlers' : ['console', 'file'],
'propagate' : True
}
}
}
logging.config.dictConfig(LOGGING)
logger = logging.getLogger('mylogger')
logger.info('Hello')
另外,还可以通过配置文件来配置logging,方法如下:
配置文件(log_conf):
[loggers]
keys=root,mylogger
[handlers]
keys=null,console,file
[formatters]
keys=verbose,simple,default
[formatter_verbose]
format=%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s
datefmt=
class=logging.Formatter
[formatter_simple]
format=%(levelname)s %(message)s
datefmt=
class=logging.Formatter
[formatter_default]
format=%(asctime)s %(message)s
datefmt=%Y-%m-%d %H:%M:%S
class=logging.Formatter
[logger_mylogger]
level=DEBUG
handlers=console,file
propagate=1
qualname=
[logger_root]
level=NOTSET
handlers=
[handler_null]
class=NullHandler
level=DEBUG
args=()
[handler_console]
class=StreamHandler
level=DEBUG
args=()
[handler_file]
class=handlers.TimedRotatingFileHandler
level=INFO
formatter=default
args=('log','M',1,0,'utf8')
Python代码:
#-*- coding: utf-8 -*-
import logging, logging.config
"""logging的使用示例
"""
if __name__ == '__main__':
# 使用配置文件
logging.config.fileConfig('log_conf')
logger = logging.getLogger('mylogger')
logger.info('Hello')
运维网声明
1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网 享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com