updated the log level

This commit is contained in:
2026-02-20 19:00:44 +01:00
parent f192355ec6
commit d9347ada81

View File

@@ -24,9 +24,9 @@ def create_app(config_class=Config):
file_handler.setFormatter(logging.Formatter(
'%(asctime)s %(levelname)s [%(module)s:%(lineno)d]: %(message)s'
))
file_handler.setLevel(logging.DEBUG)
file_handler.setLevel(logging.INFO)
app.logger.addHandler(file_handler)
app.logger.setLevel(logging.DEBUG)
app.logger.setLevel(logging.INFO)
db.init_app(app)