-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
do some platform upgrades based on latest 1.19 platform
- Loading branch information
1 parent
839da27
commit 78f2023
Showing
9 changed files
with
91 additions
and
61 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
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
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 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,40 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<Configuration status="WARN" shutdownHook="disable"> | ||
<Appenders> | ||
<RollingRandomAccessFile name="File" fileName="logs/server.log" filePattern="logs/%d{yyyy-MM-dd}-%i.log.gz"> | ||
<PatternLayout> | ||
<LoggerNamePatternSelector defaultPattern="[%d{HH:mm:ss}] [%t/%level]: [%logger] {%msg}%n%xEx{full}"> | ||
<!-- Log root without prefix --> | ||
<!-- Disable prefix for various plugins that bypass the plugin logger --> | ||
<PatternMatch key=",com.sk89q.,ru.tehkode.,Minecraft.AWE" | ||
pattern="[%d{HH:mm:ss}] [%t/%level]: {%msg}%n%xEx{full}" /> | ||
</LoggerNamePatternSelector> | ||
</PatternLayout> | ||
<Policies> | ||
<TimeBasedTriggeringPolicy /> | ||
<OnStartupTriggeringPolicy /> | ||
</Policies> | ||
<DefaultRolloverStrategy max="1000"/> | ||
</RollingRandomAccessFile> | ||
<Console name="Console" target="SYSTEM_OUT"> | ||
<PatternLayout> | ||
<LoggerNamePatternSelector defaultPattern="%highlightError{[%d{HH:mm:ss} %level]: [%logger] {%msg}%n%xEx{full}}"> | ||
<!-- Log root without prefix --> | ||
<!-- Disable prefix for various plugins that bypass the plugin logger --> | ||
<PatternMatch key=",,com.sk89q.,ru.tehkode.,Minecraft.AWE" | ||
pattern="%highlightError{[%d{HH:mm:ss} %level]: {%msg}%n%xEx{full}}" /> | ||
</LoggerNamePatternSelector> | ||
</PatternLayout> | ||
</Console> | ||
<Async name="Async"> | ||
<AppenderRef ref="File"/> | ||
<AppenderRef ref="Console" level="info"/> | ||
</Async> | ||
</Appenders> | ||
|
||
<Loggers> | ||
<Root level="info"> | ||
<AppenderRef ref="Async"/> | ||
</Root> | ||
</Loggers> | ||
</Configuration> |
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,14 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<Configuration status="WARN" shutdownHook="disable"> | ||
<Appenders> | ||
<Console name="Console" target="SYSTEM_OUT"> | ||
<PatternLayout pattern="%-5p %c{1} - %m%n" /> | ||
</Console> | ||
</Appenders> | ||
|
||
<Loggers> | ||
<Root level="debug"> | ||
<AppenderRef ref="Console"/> | ||
</Root> | ||
</Loggers> | ||
</Configuration> |