HUB-9592: Add ENV variables to configure NodeLogger#89
Open
HUB-9592: Add ENV variables to configure NodeLogger#89
Conversation
There was a problem hiding this comment.
Pull request overview
This PR introduces new environment variables (and corresponding Java system properties) to configure default NodeLogger log levels and workflow logging behavior via external configuration, aligning with HUB-9592’s goal of making log level settings configurable in EC deployments.
Changes:
- Added environment variable constants for configuring minimum log levels for stdout, global logfile, and workflow logging.
- Added environment variable + Java system property constants to enable/disable workflow logging by default.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
0df82a9 to
af29342
Compare
HUB-9592 (Add log level setting to EC configuration)
af29342 to
c2efd17
Compare
|
oole
approved these changes
Apr 8, 2026
bernd-wiswedel
approved these changes
Apr 17, 2026
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.



Adding ENV variables so we can reference them in dependent plugins, e.g. workbench preferences which defines the "single source of truth" for runtime logging configuration we use.
Even though the
NodeLoggerandNodeLoggerConfigoffer API to configure it, any modification will not be synced back to the Workbench preferences, which is confusing (since users don't see it reflected in the Preferences dialog) and error prone.HUB-9592 (Add log level setting to EC configuration)