python实现log日志的示例代码
作者:shengnan_only 时间:2023-11-29 13:25:49
源代码:
# coding=utf-8
import logging
import os
import time
LEVELS={'debug':logging.DEBUG,\
'info':logging.INFO,\
'warning':logging.WARNING,\
'error':logging.ERROR,\
'critical':logging.CRITICAL,}
logger=logging.getLogger()
level='default'
def createFile(filename):
path=filename[0:filename.rfind('/')]
if not os.path.isdir(path):
os.makedirs(path)
if not os.path.isfile(filename):
#创建并打开一个新文件
fd = open(filename,mode='w',encoding='utf-8')
fd.close()
class MyLog:
log_filename='E:/quality/it/pyrequest-master/log/itest.log'
err_filename='E:/quality/it/pyrequest-master/log/err.log'
dateformat='%Y-%m-%d %H:%M:%S'
logger.setLevel(LEVELS.get(level,logging.NOTSET))
createFile(log_filename)
createFile(err_filename)
#注意文件内容写入时编码格式指定
handler=logging.FileHandler(log_filename,encoding='utf-8')
errhandler=logging.FileHandler(err_filename,encoding='utf-8')
@staticmethod
#静态方法
def debug(log_message):
setHandler('debug')
logger.debug("[DEBUG "+getCurrentTime()+"]"+log_message)
removerhandler('debug')
@staticmethod
def info(log_message):
setHandler('info')
logger.info("[INFO "+getCurrentTime()+"]"+log_message)
removerhandler('info')
@staticmethod
def warning(log_message):
setHandler('warning')
logger.warning("[WARNING "+getCurrentTime()+"]"+log_message)
removerhandler('warning')
@staticmethod
def error(log_message):
setHandler('error')
logger.error("[ERROR "+getCurrentTime()+"]"+log_message)
removerhandler('error')
@staticmethod
def critical(log_message):
setHandler('critical')
logger.critical("[CRITICAL "+getCurrentTime()+"]"+log_message)
removerhandler('critical')
# logger可以看做是一个记录日志的人,对于记录的每个日志,他需要有一套规则,比如记录的格式(formatter),
# 等级(level)等等,这个规则就是handler。使用logger.addHandler(handler)添加多个规则,
# 就可以让一个logger记录多个日志。
def setHandler(level):
if level=='error':
logger.addHandler(MyLog.errhandler)
#handler=logging.FileHandler(log_filename)
#把logger添加上handler
logger.addHandler(MyLog.handler)
def removerhandler(level):
if level=='error':
logger.removeHandler(MyLog.errhandler)
logger.removeHandler(MyLog.handler)
def getCurrentTime():
return time.strftime(MyLog.dateformat,time.localtime(time.time()))
if __name__=="__main__":
MyLog.debug("This is debug message")
MyLog.info("This is info message")
MyLog.warning("This is warning message")
MyLog.error("This is error message")
MyLog.critical("This is critical message")
来源:https://blog.csdn.net/zhengshengnan123/article/details/71191814
标签:python,log日志
0
投稿
猜你喜欢
Go语言空结构体详解
2024-04-30 10:07:44
读写xml文件的2个小函数
2007-08-23 12:59:00
C#利用反射实现多数据库访问
2024-01-27 12:00:58
利用Vue实现一个markdown编辑器实例代码
2024-04-30 10:39:19
python实现抽奖小程序
2022-06-10 14:14:29
Python中求对数方法总结
2023-04-13 22:20:28
总结Python中逻辑运算符的使用
2023-01-10 14:54:40
AJAX中文乱码解决
2009-07-03 13:43:00
Python编程基础之类和对象
2023-08-04 11:52:33
python中requests爬去网页内容出现乱码问题解决方法介绍
2023-09-14 01:00:11
Python爬取梨视频的示例
2022-05-24 08:12:33
python 利用栈和队列模拟递归的过程
2023-12-14 14:08:12
详解ASP.NET Core中间件Middleware
2024-05-09 09:05:15
前淘宝前端开发工程师阿当的PPT中有JS技术理念问题
2024-05-25 15:17:53
《CSS权威指南》文摘(1)--块级元素、行内元素
2008-04-05 13:42:00
Python实现计算圆周率π的值到任意位的方法示例
2021-09-08 16:47:09
以SortedList为例详解Python的defaultdict对象使用自定义类型的方法
2022-04-07 02:32:28
很有意思的SQL多行数据拼接
2024-01-28 02:08:56
Python实现读取TXT文件数据并存进内置数据库SQLite3的方法
2021-03-01 14:14:27
Activiti-Explorer使用sql server数据库实现方法
2024-01-18 03:07:36