Python日志配置文件

时间:2010-12-14 16:58:09

标签: python logging

在尝试实现登录到我的python项目时,我似乎遇到了一些问题。

我只是试图模仿以下配置:

Python Logging to Multiple Destinations

然而,我不想在代码中执行此操作,而是希望将其放在配置文件中。

以下是我的配置文件:

[loggers]
keys=root

[logger_root]
handlers=screen,file

[formatters]
keys=simple,complex

[formatter_simple]
format=%(asctime)s - %(name)s - %(levelname)s - %(message)s

[formatter_complex]
format=%(asctime)s - %(name)s - %(levelname)s - %(module)s : %(lineno)d - %(message)s

[handlers]
keys=file,screen

[handler_file]
class=handlers.TimedRotatingFileHandler
interval=midnight
backupCount=5
formatter=complex
level=DEBUG
args=('logs/testSuite.log',)

[handler_screen]
class=StreamHandler
formatter=simple
level=INFO
args=(sys.stdout,)

问题是我的屏幕输出如下:
      2010-12-14 11:39:04,066 - root - 警告 - 3
      2010-12-14 11:39:04,066 - root - ERROR - 4
      2010-12-14 11:39:04,066 - root - CRITICAL - 5

我的文件是输出,但看起来与上面相同(尽管包含了额外的信息)。但是,调试和信息级别也不会输出。

我在使用Python 2.7

以下是我显示失败的简单示例:

import os
import sys
import logging
import logging.config

sys.path.append(os.path.realpath("shared/"))
sys.path.append(os.path.realpath("tests/"))

class Main(object):

  @staticmethod
  def main():
    logging.config.fileConfig("logging.conf")
    logging.debug("1")
    logging.info("2")
    logging.warn("3")
    logging.error("4")
    logging.critical("5")

if __name__ == "__main__":
  Main.main()

5 个答案:

答案 0 :(得分:21)

看起来您已经为处理程序设置了级别,但不是您的记录器。记录器的级别会在每条消息到达其处理程序之前对其进行过滤,默认值为WARNING及以上(如您所见)。将根记录器的级别设置为NOTSET,并将其设置为DEBUG(或者您希望记录的最低级别)应解决您的问题。

答案 1 :(得分:13)

将以下行添加到根记录器可以解决我的问题:

level=NOTSET

答案 2 :(得分:1)

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import logging
import logging.handlers
from logging.config import dictConfig

logger = logging.getLogger(__name__)

DEFAULT_LOGGING = {
    'version': 1,
    'disable_existing_loggers': False,
}
def configure_logging(logfile_path):
    """
    Initialize logging defaults for Project.

    :param logfile_path: logfile used to the logfile
    :type logfile_path: string

    This function does:

    - Assign INFO and DEBUG level to logger file handler and console handler

    """
    dictConfig(DEFAULT_LOGGING)

    default_formatter = logging.Formatter(
        "[%(asctime)s] [%(levelname)s] [%(name)s] [%(funcName)s():%(lineno)s] [PID:%(process)d TID:%(thread)d] %(message)s",
        "%d/%m/%Y %H:%M:%S")

    file_handler = logging.handlers.RotatingFileHandler(logfile_path, maxBytes=10485760,backupCount=300, encoding='utf-8')
    file_handler.setLevel(logging.INFO)

    console_handler = logging.StreamHandler()
    console_handler.setLevel(logging.DEBUG)

    file_handler.setFormatter(default_formatter)
    console_handler.setFormatter(default_formatter)

    logging.root.setLevel(logging.DEBUG)
    logging.root.addHandler(file_handler)
    logging.root.addHandler(console_handler)



[31/10/2015 22:00:33] [DEBUG] [yourmodulename] [yourfunction_name():9] [PID:61314 TID:140735248744448] this is logger infomation from hello module

我认为你应该将disable_existing_loggers添加到false。

答案 3 :(得分:1)

只需在[logger_root]中添加日志级别即可。这是有效的。

[logger_root]
level=DEBUG
handlers=screen,file

答案 4 :(得分:0)

写入终端和文件的简单方法如下:

import logging.config

logging.basicConfig(
    level=logging.INFO,
    format="%(asctime)s [%(levelname)s] %(message)s",
    handlers=[
        logging.FileHandler("log_file.log"),
        logging.StreamHandler()
    ]
)
logger = logging.getLogger(__name__)

然后像这样在你的代码中使用它:

logger.info('message')
logger.error('message')