[XEN-3155] Allow configuration of log level through environment variable#232
Merged
NotAPenguin0 merged 9 commits intomasterfrom Jan 7, 2026
Merged
[XEN-3155] Allow configuration of log level through environment variable#232NotAPenguin0 merged 9 commits intomasterfrom
NotAPenguin0 merged 9 commits intomasterfrom
Conversation
d3f8553 to
a86b91b
Compare
a86b91b to
29bb882
Compare
…se they do not report the correct fields for an application type log
a4baab8 to
c3a59e6
Compare
…on for flexibility)
pvriel
approved these changes
Dec 15, 2025
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.
This PR allows users of the images to set the log level for different packages dynamically by specifying the
LOG_LEVEL_org_my_package=the-levelenvironment variable when running an image.It does this by generating a log4j configuration file when the container starts based on the current environment.
The last commit also touches the other scripts to change their logging type to
entrypoint, so that the logging test doesn't reject these logs for not containing the properloggerNameandshortMessagefields.