fix(config): change default LOG_LEVEL from debug to info#120
Merged
vigneshrajsb merged 1 commit intomainfrom Mar 2, 2026
Merged
fix(config): change default LOG_LEVEL from debug to info#120vigneshrajsb merged 1 commit intomainfrom
vigneshrajsb merged 1 commit intomainfrom
Conversation
The lifecycle-web component does not set LOG_LEVEL in its helm chart and relies on the code-level default. That default was incorrectly set to 'debug', causing verbose debug output in production. Changed to 'info' to match the explicit value already used by the worker component. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
lifecycle-webcomponent has noLOG_LEVELenv var set in its helm chart, so it falls back to the code-level default insrc/shared/config.ts.'debug', causing verbose debug output in the web component in production.LOG_LEVEL=infoset explicitly; this change aligns the web component's fallback with that value.Change
src/shared/config.tsline 91:getServerRuntimeConfig('LOG_LEVEL', 'debug')→getServerRuntimeConfig('LOG_LEVEL', 'info')Test plan
lifecycle-webto a non-production environment withoutLOG_LEVELset and confirm logs are atinfolevel, notdebug.LOG_LEVEL=infoexplicitly) is unaffected.config.ts; the change is a one-line default value correction.🤖 Generated with Claude Code