Python 记录日志

本文介绍了如何使用Python的logging模块创建一个名为Mylog的日志管理类,实现不同级别的日志记录,包括DEBUG、INFO和ERROR,以及在主函数中测试日志功能。
摘要由CSDN通过智能技术生成

1.效果如下: 

2.代码如下:

import logging
import threading
import os
import sys
sys.path.append(os.getcwd())

class Mylog(object):
    _instance_lock = threading.Lock()

    def __init__(self):#,path = "log.txt"):
        # 配置日志输出格式
        path = os.path.join(os.getcwd(),'applog.log')
        # formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(pathname)s - %(message)s')
        formatter = logging.Formatter("%(asctime)s - %(pathname)s[line:%(lineno)d] - %(levelname)s: %(message)s")
        self.logger = logging.getLogger()
        self.logger.setLevel(logging.DEBUG)
        
        # 创建文件处理器并设置日志级别为DEBUG
        file_handler = logging.FileHandler(path,mode='a',encoding='utf-8')# 输出到log文件的handler 'w'覆盖 'a'添加
        file_handler.setLevel(logging.DEBUG)
        file_handler.setFormatter(formatter)
        # 输出到控制台
        # file_handler = logging.StreamHandler()
        # file_handler.setLevel(logging.INFO)
        # 将文件处理器添加到日志记录器中
        self.logger.addHandler(file_handler)

    @classmethod
    def instance(cls, *args, **kwargs):
        if not hasattr(Mylog, "_instance"):
            with Mylog._instance_lock:
                if not hasattr(Mylog, "_instance"):
                    Mylog._instance = Mylog(*args, **kwargs)
        return Mylog._instance


def testlog():
    mylog = Mylog.instance()
    mylog.logger.debug("This is a debug message")
    mylog.logger.info("This is a info message")
    Mylog.instance().logger.debug("This is another debug message")
    Mylog.instance().logger.error("This is an  错误信息")

if __name__ == '__main__':
    testlog()

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值