LOG_LEVEL = logging.DEBUG if DEBUG else logging.INFO #31469
-
How to enable log_level for debugging, using helm chart |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
To enable the extraEnv:
DEBUG: "true" This will set the To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Other |
Beta Was this translation helpful? Give feedback.
To enable the
LOG_LEVEL
for debugging using the Helm chart, you can set theDEBUG
environment variable totrue
. This can be done by specifying it in theextraEnv
section of yourvalues.yaml
file. Here's how you can configure it:This will set the
LOG_LEVEL
tologging.DEBUG
as per your configuration logic. Make sure to apply the changes by upgrading your Helm release with the updatedvalues.yaml
file.To continue talking to Dosu, mention @dosu.
Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Other