Python记录额外信息

时间:2018-10-20 17:13:59

标签: python python-3.x logging

如果我有以下python代码:

import logging
logging.basicConfig(filename='allow.txt', level=logging.DEBUG, format='%(asctime)s')
logging.debug(2+3)

但是当我运行它时,我得到的结果是3 + 2中甚至没有5:

2018-10-20 10:06:45,177

如何使结果更像这样:

2018-10-20 10:06:45 : 5

甚至更好:

Date: 2018-10-20, Time: 10:06:45 Answer: 5

3 个答案:

答案 0 :(得分:2)

您需要在格式字符串中包含%(message)s才能记录日志消息:

logging.basicConfig(..., format='%(asctime)s : %(message)s')

您可以通过配置datefmt参数在时间戳记中包括字符串“ Date”和“ Time”:

logging.basicConfig(
    ... ,
    datefmt='Date: %Y-%m-%d, Time: %H:%M:%S',
    format='%(asctime)s Answer: %(message)s',
)

答案 1 :(得分:1)

  • 您忘记了%(消息)s

  • 您可以使用datefmt可选参数

    import logging
    logging.basicConfig(filename='allow.txt', level=logging.DEBUG, format='%(asctime)s: %(message)s', datefmt="Date: %Y-%m-%d Time: %H:%M:%S")
    

答案 2 :(得分:1)

发生这种情况的原因是在format参数中。您的日志消息格式化程序仅以asc格式打印时间。您应该添加message参数。

import logging
logging.basicConfig(filename='allow.txt', level=logging.DEBUG, format='%(asctime)s : %(message)s')
logging.debug(2+3)

将导致:2018-10-20 20:27:44,082 : 5

要使用“最佳情况”,应添加日期格式。

logging.basicConfig(filename='allow.txt', level=logging.DEBUG, format='%(asctime)s Answer: %(message)s', datefmt="Date: %Y-%m-%d, Time: %H:%M:%S")

将导致: Date: 2018-10-20, Time: 20:29:29 Answer: 5