We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bf1dc2 commit 70c4565Copy full SHA for 70c4565
jwt_proxy/app.py
@@ -31,6 +31,6 @@ def configure_logging(app):
31
app.logger # must call to init prior to config or it'll replace
32
logging_config.fileConfig("logging.ini", disable_existing_loggers=False)
33
app.logger.setLevel(getattr(logging, app.config["LOG_LEVEL"].upper()))
34
- if app.config["LOGSERVER_URL"]:
+ if app.config["LOGSERVER_URL"] and app.config["LOGSERVER_TOKEN"]:
35
audit_log_init(app)
36
audit_entry("jwt_proxy logging initialized")
0 commit comments