-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change logging to tinylog; update java dependencies
- Loading branch information
1 parent
b8d38d7
commit d2fc04e
Showing
246 changed files
with
2,130 additions
and
2,167 deletions.
There are no files selected for viewing
This file contains 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 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,20 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<launchConfiguration type="org.eclipse.buildship.core.launch.runconfiguration"> | ||
<listAttribute key="arguments"> | ||
<listEntry value="--warning-mode"/> | ||
<listEntry value="all"/> | ||
</listAttribute> | ||
<booleanAttribute key="build_scans_enabled" value="false"/> | ||
<stringAttribute key="gradle_distribution" value="GRADLE_DISTRIBUTION(VERSION(7.0.1))"/> | ||
<stringAttribute key="gradle_user_home" value=""/> | ||
<stringAttribute key="java_home" value=""/> | ||
<listAttribute key="jvm_arguments"/> | ||
<booleanAttribute key="offline_mode" value="false"/> | ||
<booleanAttribute key="override_workspace_settings" value="false"/> | ||
<booleanAttribute key="show_console_view" value="true"/> | ||
<booleanAttribute key="show_execution_view" value="true"/> | ||
<listAttribute key="tasks"> | ||
<listEntry value="dependencyUpdates"/> | ||
</listAttribute> | ||
<stringAttribute key="working_dir" value="${workspace_loc:/tubedb}"/> | ||
</launchConfiguration> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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,33 @@ | ||
writingthread = true | ||
|
||
writerInfo = rolling file | ||
writerInfo.level = info | ||
writerInfo.format = {date} {level|min-size=5} {message|min-size=80} {class}.{method}({file}:{line}) | ||
writerInfo.file = log/log_{date}.txt | ||
writerInfo.charset = UTF-8 | ||
writerInfo.buffered = true | ||
writerInfo.policies = startup, daily: 03:00, size: 10mb | ||
writerInfo.backups = 20 | ||
|
||
writerTrace = rolling file | ||
writerTrace.level = trace | ||
writerTrace.format = {date} {level|min-size=5} {message|min-size=80} {class}.{method}({file}:{line}) | ||
writerTrace.file = log/trace/trace_{date}.txt | ||
writerTrace.charset = UTF-8 | ||
writerTrace.buffered = true | ||
writerTrace.policies = startup, daily: 03:00, size: 10mb | ||
writerTrace.backups = 20 | ||
|
||
writerWarn = rolling file | ||
writerWarn.level = warn | ||
writerWarn.format = {date} {level|min-size=5} {message|min-size=80} {class}.{method}({file}:{line}) | ||
writerWarn.file = log/warn/warn_{date}.txt | ||
writerWarn.charset = UTF-8 | ||
writerWarn.buffered = true | ||
writerWarn.policies = startup, daily: 03:00, size: 10mb | ||
writerWarn.backups = 20 | ||
|
||
writerConsole = console | ||
writerConsole.level = info | ||
writerConsole.format = {level|min-size=5} {message|min-size=80} {class}.{method}({file}:{line}) | ||
writerConsole.stream = err@WARN |
Oops, something went wrong.