3

lib_xml.py 的模块:

import conf_store

def hello():
        print conf_store.logger
        conf_store.logger.debug('why')
        print 'where'

conf_store.py 的模块:

#! /usr/bin/python 

import os, subprocess, logging, time, shutil, fcntl
import lib_xml

def log():
        """
        a log handle
        """
        import logging.handlers
        global logger
        LOG_PATH = "/opt/conf_store.log"
        logger = logging.getLogger('conf_store')
        logger.setLevel(logging.DEBUG)
        ch = logging.handlers.WatchedFileHandler(LOG_PATH)
        ch.setLevel(logging.DEBUG)
        formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
        ch.setFormatter(formatter)
        logger.addHandler(ch)



if __name__ == "__main__":
        log()

        while(True):
                lib_xml.hello()
                logger.debug('what')

如何logger在 lib_xml.py 和 conf_store.py 之间共享对象?

4

2 回答 2

8

您可以将其留给logging模块。

只需导入logginglogging.getLogger()使用相同的键将始终返回相同的对象;添加的以下代码lib_xml会将消息记录到同一记录器:

import logging

logger = logging.getLogger('conf_store')

日志记录配置在设计上是全局的。

仅使用当前模块名称作为日志记录键有一个优势;它可以让您梳理出记录了哪些位置消息:

logger = logging.getLogger(__name__)
于 2013-09-05T08:56:38.697 回答
0

删除全局记录器

从 log() 返回记录器

添加一行: logger = log() 之后

于 2013-09-05T09:03:07.133 回答