Is it possible and how to set the logging timezone to GMT?
(i.e. the %(asctime)s
parameter in the format)
Is it possible and how to set the logging timezone to GMT?
(i.e. the %(asctime)s
parameter in the format)
logging.Formatter.converter = time.gmtime
(documented in the docstring of logging.Formatter.formatTime
)