Give the root logger a nicer format

This commit is contained in:
Brain 2022-01-26 23:19:06 +01:00
parent 689a5ba33e
commit 1360b4c738
Signed by: Brain
GPG Key ID: 9CF47083EE57670D
1 changed files with 1 additions and 1 deletions

2
app.py
View File

@ -20,7 +20,7 @@ app = Flask(__name__)
loglevel = os.getenv("KI_LOGLEVEL", logging.WARNING)
loglevel = int(loglevel)
app.logger.setLevel(loglevel)
logging.basicConfig(level=loglevel)
logging.basicConfig(level=loglevel, format='[%(asctime)s] %(levelname)s [%(name)s] %(message)s') # configure root logger as fallback
set_library_log_detail_level(BASIC)
ldap3_logger.addHandler(default_handler)