mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-04-23 22:27:17 -04:00
Updated logging to use ISO 8601 date format
This commit is contained in:
parent
902d1e62b8
commit
549bebcc43
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ def configure_logging(debug=False):
|
|||
fh = TimedRotatingFileHandler(os.path.join(args.config_dir, 'log/bazarr.log'), when="midnight", interval=1,
|
||||
backupCount=7, delay=True, encoding='utf-8')
|
||||
f = FileHandlerFormatter('%(asctime)s|%(levelname)-8s|%(name)-32s|%(message)s|',
|
||||
'%d/%m/%Y %H:%M:%S')
|
||||
'%Y-%m-%d %H:%M:%S')
|
||||
fh.setFormatter(f)
|
||||
fh.setLevel(log_level)
|
||||
logger.addHandler(fh)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue