-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configurable backend log level #2533
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,4 @@ SESSION_STORE_SECRET=wheeee! | |
CONSOLE_PROXY_CERT_KEY=use local dev-cert/pproxy.key in portal-proxy repo | ||
CONSOLE_PROXY_CERT=use local dev-cert/pproxy.crt in portal-proxy repo | ||
ENCRYPTION_KEY=B374A26A71490437AA024E4FADD5B497FDFF1A8EA6FF12F6FB65AF2720B59CCF | ||
LOG_LEVEL=debug | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This will mean any docker compose deployment will have debug logging. Probably want to set this to info. Should look to see if we can pass this as an env when running standupdevenv There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That was the intent, since docker-compose environments are dev environments. I'll move this to the standupdevenv and restart-proxy script. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't the name be inside the if?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The default value specified is
info
, if that is unset, we will still default to 'info'.