时间:2021-05-22
本文实例讲述了python写日志文件操作类与应用。分享给大家供大家参考,具体如下:
项目的开发过程中,日志文件是少不了的,通过写日志文件,可以知道程序运行的情况。特别当部署在生产环境中的时候,这个时候一般不能debug , 当然在有些情况时可以 remote debug (远程debug)。那种情况另当别论。还是用通常的写日志的方法,比如在 java 中,经常可以看到 log4j,sf4j,logback等三方组件来写日志。
在python中如何实现呢,其实python 本身也带了日志操作的库。可以直接使用。这里我把在项目中用到的整理了一下,分享在下面,这个实现的方法,主要有两点
1. 写日志的类
2.日志配置文件(handler,logger,以及日志保存的路径等)
写日志的类
'''Created on 2012-2-17@author: yihaomen.com'''import logging.configimport osclass INetLogger: log_instance = None @staticmethod def InitLogConf(): currentDir=os.path.dirname(__file__) INetLogger.log_instance = logging.config.fileConfig(currentDir+os.path.sep+"logger.ini") @staticmethod def GetLogger(name = ""): if INetLogger.log_instance == None: INetLogger.InitLogConf() INetLogger.log_instance = logging.getLogger(name) return INetLogger.log_instanceif __name__ == "__main__": logger = INetLogger.GetLogger() logger.debug("debug message") logger.info("info message") logger.warn("warn message") logger.error("error message") logger.critical("critical message") logHello = INetLogger.GetLogger("root") logHello.info("Hello world!")日志配置文件,与上面的类在同一文件夹下 logger.ini
[loggers]keys=root,mysql,socket[handlers]keys=consoleHandler,rotateFileHandler[formatters]keys=simpleFormatter[formatter_simpleFormatter]format=[%(asctime)s][%(levelname)s] [%(filename)s:%(lineno)d] [thread:%(thread)d]: %(message)s[logger_root]qualname=rootlevel=DEBUGhandlers=consoleHandler,rotateFileHandler[logger_mysql]qualname=mysqllevel=DEBUGhandlers=rotateFileHandler[logger_socket]qualname=socketlevel=ERRORhandlers=rotateFileHandler[handler_consoleHandler]class=StreamHandlerlevel=DEBUGformatter=simpleFormatterargs=(sys.stdout,)[handler_rotateFileHandler]class=handlers.RotatingFileHandlerlevel=DEBUGformatter=simpleFormatterargs=('c:/logs/InetServer.log', 'a', 2000000, 9)如果你用了 handler_rotateFileHandler 的话,这样日志就会保存到 才c:/logs/InetServer.log 文件里面,而且当日志超过2000000 d的时候,重新另外生成一个文件,保存9天的记录,你可以配置成30,这样就保存了最近一个月的日志记录。
更多关于Python相关内容感兴趣的读者可查看本站专题:《Python日志操作技巧总结》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》
希望本文所述对大家Python程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
以下是关于用易语言编写的记录日志类的相关源码内容.版本2.子程序写日志记录.参数写日志_日志文件名,文本型.参数写日志_日志文本,文本型.局部变量文件句柄,整数
本文实例讲述了python实现写日志封装类。分享给大家供大家参考。具体如下:#encoding:utf-8importsysimportloggingimpor
使用C++语言编写写日志类,支持写日志级别设置、支持多线程、支持可变形参表写日志。主要提供以下接口:1、设置写日志的级别2、写关键日志信息3、写错误日志信息4、
操作系统:CentOS6.9_x64go语言版本:1.8.3问题描述golang的log模块提供的有写日志功能,示例代码如下:/*golanglogexampl
文件操作示例复制代码代码如下:#输入文件f=open(r'D:\Python27\pro\123.bak')#输出文件fw=open(r'D:\Python27