¿Cómo personalizar el formato de hora para el registro de Python?

200

Soy nuevo en el paquete de registro de Python y planeo usarlo para mi proyecto. Me gustaría personalizar el formato de hora a mi gusto. Aquí hay un código corto que copié de un tutorial:

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")

Y aquí está el resultado:

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

Me gustaría acortar el formato de tiempo a solo: ' 2010-07-10 10:46:28', dejando caer el sufijo de milisegundos. Miré el Formatter.formatTime, pero confundido. Agradezco su ayuda para lograr mi objetivo. Gracias.

Hai Vu
fuente

Respuestas:

224

De la documentación oficial sobre la clase Formatter:

El constructor toma dos argumentos opcionales: una cadena de formato de mensaje y una cadena de formato de fecha.

Entonces cambia

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

a

# create formatter
formatter = logging.Formatter("%(asctime)s;%(levelname)s;%(message)s",
                              "%Y-%m-%d %H:%M:%S")
Metalshark
fuente
24
Tenga en cuenta que si está usando el método dictConfig para configurar el registro (por ejemplo, si está usando Django), puede configurarlo usando la tecla dict 'datefmt' para un formateador. Ver: Configuración de registro de Django , módulo de registro: Detalles del esquema del diccionario
taleinat
8
Además, si está configurando el registro con basicConfig, se necesita un parámetro con nombre llamado datefmt
Bruno Lopes
10
En 1.9, si está utilizando una configuración de REGISTRO, puede incluir una entrada 'datefmt' como esta ...'formatters': { 'default': { 'format': '%(asctime)s | %(levelname)s | %(module)s | %(message)s', 'datefmt': '%Y-%m-%d %H:%M', },
jcfollower
¿Cuál será la zona horaria?
Luv33preet
@ Luv33preet es '% z'
caído el
139

Usando logging.basicConfig, el siguiente ejemplo funciona para mí:

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',
)

Esto le permite formatear y configurar todo en una línea. El registro de registro resultante tiene el siguiente aspecto:

2014-05-26 12:22:52.376 CRITICAL historylistener - main: History log failed to start
Ben
fuente
44
He agregado el formato de relleno cero para el campo msecs. De lo contrario, los valores de msecs inferiores a 100 aparecen incorrectamente.
Pensamiento extraño el
2
Dicho esto, ¡el OP no quiere que aparezcan ms!
Pensamiento extraño el
31

si usa logging.config.fileConfig con un archivo de configuración, use algo como:

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

Para agregar a las otras respuestas, aquí está la lista de variables de la documentación de Python.

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.     
Iacchus
fuente