Trying to fix a logging bug?

This commit is contained in:
Scott Idem
2023-06-13 11:33:39 -04:00
parent 756913a9cd
commit 8a7d30b276

View File

@@ -27,7 +27,7 @@ logging.config.dictConfig({
'level': 'NOTSET',
'class': 'logging.handlers.RotatingFileHandler',
'formatter': 'long',
'filename': 'admin/log/app.log,
'filename': 'admin/log/app.log',
'maxBytes': 10485760, # 5,242,880 = 5 MB; 10,485,760 = 10 MB
'backupCount': 9
},