-
Notifications
You must be signed in to change notification settings - Fork 8
Best guess at modified entrypoint.sh #136
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
Merged
Merged
Changes from 8 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
a265203
Best guess at modified entrypoint.sh
Sigmonia 88e9468
adjust casing of CONSOLE logger, and remove extrea space
Sigmonia 58735fa
Adjusting the path the log4j2.xml file is copied to.
Sigmonia 45db8a9
fix log4j copy path; update README with new log4j setup; set quicksta…
labkey-willm 1e219f2
use the override effect of the `log4j2.configurationFile` property
Sigmonia c4618fd
update the Dockerfile and entrypoint.sh to use the override file as n…
Sigmonia 1e9c597
Update the README
Sigmonia 1fd867b
Cleanup the missing assignment errors
Sigmonia d98dd5f
Cleanup dev cruft
Sigmonia c109690
remove unused action
Sigmonia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Empty file.
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| <?xml version="1.0" encoding="UTF-8" ?> | ||
|
|
||
| <Configuration packages="org.labkey.api.util,org.labkey.embedded"> | ||
|
|
||
| <Appenders> | ||
| <Console name="CONSOLE" target="SYSTEM_OUT"> | ||
| <JSONLayout compact="true" eventEol="true" properties="true" stacktraceAsString="true" /> | ||
| </Console> | ||
| </Appenders> | ||
|
|
||
| <Loggers> | ||
| <Logger name="org.labkey.api.script.ScriptService.Console" additivity="false" level="info"> | ||
| <AppenderRef ref="SessionAppender"/> | ||
| </Logger> | ||
|
|
||
| <Logger name="org.fhcrc" level="info" /> | ||
| <Logger name="org.labkey" level="${env:LOG_LEVEL_LABKEY_DEFAULT:-INFO}" /> | ||
|
|
||
| <!-- Override the additivity --> | ||
| <Logger name="org.labkey.api.util.DebugInfoDumper" additivity="false" level="debug"> | ||
| <AppenderRef ref="THREAD_DUMP"/> | ||
| </Logger> | ||
|
|
||
| <!-- Override the additivity, and output to Console --> | ||
| <Logger name="org.labkey.core.admin.AdminController.ContentSecurityPolicyReportAction" additivity="false" level="warn"> | ||
| <AppenderRef ref="CSP_REPORT" /> | ||
| <AppenderRef ref="CONSOLE" /> | ||
| </Logger> | ||
|
|
||
| <!-- Override the additivity --> | ||
| <Logger name="org.labkey.core.admin.ActionsTsvWriter" additivity="false" level="${env:LOG_LEVEL_LABKEY_DEFAULT:-INFO}"> | ||
| <AppenderRef ref="ACTION_STATS"/> | ||
| </Logger> | ||
|
|
||
| <!-- Override the output level --> | ||
| <Logger name="org.labkey.api.data.queryprofiler.QueryProfiler.QueryProfilerThread" additivity="false" level="${env:LOG_LEVEL_LABKEY_DEFAULT:-INFO}"> | ||
| <AppenderRef ref="QUERY_STATS"/> | ||
| </Logger> | ||
|
|
||
| <!-- Override the audit log behavior --> | ||
| <!-- <Logger name="org.labkey.audit.event" additivity="false" level="OFF">--> | ||
| <!-- <AppenderRef ref="LABKEY_AUDIT"/>--> | ||
| <!-- <AppenderRef ref="CONSOLE" />--> | ||
| <!-- </Logger>--> | ||
| </Loggers> | ||
| </Configuration> |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.