Як налаштувати формат часу для ведення журналу Python?


200

Я новачок у пакеті журналу Python і планую використовувати його для свого проекту. Я хотів би налаштувати формат часу на свій смак. Ось короткий код, який я скопіював із підручника:

import logging

# create logger
logger = logging.getLogger("logging_tryout2")
logger.setLevel(logging.DEBUG)

# create console handler and set level to debug
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)

# create formatter
formatter = logging.Formatter("%(asctime)s;%(levelname)s;%(message)s")

# add formatter to ch
ch.setFormatter(formatter)

# add ch to logger
logger.addHandler(ch)

# "application" code
logger.debug("debug message")
logger.info("info message")
logger.warn("warn message")
logger.error("error message")
logger.critical("critical message")

І ось вихід:

2010-07-10 10:46:28,811;DEBUG;debug message
2010-07-10 10:46:28,812;INFO;info message
2010-07-10 10:46:28,812;WARNING;warn message
2010-07-10 10:46:28,812;ERROR;error message
2010-07-10 10:46:28,813;CRITICAL;critical message

Я хотів би скоротити формат часу до просто: ' 2010-07-10 10:46:28', скинувши суфікс мілі-секунди. Я подивився на Formatter.formatTime, але розгублений. Я ціную вашу допомогу в досягненні своєї мети. Дякую.

Відповіді:


224

З офіційної документації щодо класу Форматтер:

Конструктор приймає два необов'язкові аргументи: рядок формату повідомлення та рядок формату дати.

Тож зміни

# create formatter
formatter = logging.Formatter("%(asctime)s;%(levelname)s;%(message)s")

до

# create formatter
formatter = logging.Formatter("%(asctime)s;%(levelname)s;%(message)s",
                              "%Y-%m-%d %H:%M:%S")

24
Зауважте, що якщо ви використовуєте метод dictConfig для налаштування журналу (наприклад, якщо ви використовуєте Django), ви можете встановити це, використовуючи клавішу dict 'datefmt' для форматора. Дивіться: Конфігурація журналу
taleinat

8
Крім того, якщо ваш конфігуруючий журнал з basicConfig, він потребує іменованого параметра під назвою datefmt
Бруно Лопес

10
У 1.9, якщо ви використовуєте налаштування LOGGING, ви можете включити запис «datefmt» таким чином ...'formatters': { 'default': { 'format': '%(asctime)s | %(levelname)s | %(module)s | %(message)s', 'datefmt': '%Y-%m-%d %H:%M', },
jcfollower

яким буде часовий пояс?
Luv33preet

@ Luv33прочитає його '% z'
shrmn

138

Використовуючи logging.basicConfig, наступний приклад працює для мене:

logging.basicConfig(
    filename='HISTORYlistener.log',
    level=logging.DEBUG,
    format='%(asctime)s.%(msecs)03d %(levelname)s %(module)s - %(funcName)s: %(message)s',
    datefmt='%Y-%m-%d %H:%M:%S',
)

Це дозволяє форматувати та конфігурувати все в одному рядку. Отриманий запис журналу виглядає так:

2014-05-26 12:22:52.376 CRITICAL historylistener - main: History log failed to start

4
Я додав нульове форматування для поля msecs. В іншому випадку значення msecs менше 100 відображаються неправильно.
Відмінна думка

2
При цьому ОП не хоче, щоб msecs з'являлися взагалі!
Відмінна думка

31

якщо ви використовуєте logging.config.fileConfig з файлом конфігурації, використовуйте щось на зразок:

[formatter_simpleFormatter]
format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
datefmt=%Y-%m-%d %H:%M:%S

29

Щоб додати до інших відповідей, ось список змінних з Python Documentation.

Directive   Meaning Notes

%a  Locales abbreviated weekday name.   
%A  Locales full weekday name.  
%b  Locales abbreviated month name.     
%B  Locales full month name.    
%c  Locales appropriate date and time representation.   
%d  Day of the month as a decimal number [01,31].    
%H  Hour (24-hour clock) as a decimal number [00,23].    
%I  Hour (12-hour clock) as a decimal number [01,12].    
%j  Day of the year as a decimal number [001,366].   
%m  Month as a decimal number [01,12].   
%M  Minute as a decimal number [00,59].  
%p  Locales equivalent of either AM or PM. (1)
%S  Second as a decimal number [00,61]. (2)
%U  Week number of the year (Sunday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Sunday are considered to be in week 0.    (3)
%w  Weekday as a decimal number [0(Sunday),6].   
%W  Week number of the year (Monday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Monday are considered to be in week 0.    (3)
%x  Locales appropriate date representation.    
%X  Locales appropriate time representation.    
%y  Year without century as a decimal number [00,99].    
%Y  Year with century as a decimal number.   
%z  Time zone offset indicating a positive or negative time difference from UTC/GMT of the form +HHMM or -HHMM, where H represents decimal hour digits and M represents decimal minute digits [-23:59, +23:59].  
%Z  Time zone name (no characters if no time zone exists).   
%%  A literal '%' character.     
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.