-
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.
- Loading branch information
Showing
61 changed files
with
7,142 additions
and
1,557 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,36 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Configuration status="WARN"> | ||
<Appenders> | ||
<Console name="LogToConsole" target="SYSTEM_OUT"> | ||
<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/> | ||
</Console> | ||
|
||
<RollingRandomAccessFile name="LogToRollingRandomAccessFile" fileName="logs/app.log" | ||
filePattern="logs/$${date:yyyy-MM}/app-%d{MM-dd-yyyy}-%i.log.gz"> | ||
<PatternLayout> | ||
<Pattern>%d %p %c{1.} [%t] %m%n</Pattern> | ||
</PatternLayout> | ||
<Policies> | ||
<OnStartupTriggeringPolicy/> | ||
<SizeBasedTriggeringPolicy size="100 MB"/> | ||
</Policies> | ||
<DefaultRolloverStrategy max="10"/> | ||
</RollingRandomAccessFile> | ||
|
||
</Appenders> | ||
<Loggers> | ||
|
||
<!-- asynchronous loggers --> | ||
<AsyncLogger name="org.rtassembly" level="debug" additivity="false"> | ||
<AppenderRef ref="LogToRollingRandomAccessFile"/> | ||
<!-- | ||
<AppenderRef ref="LogToConsole"/> | ||
--> | ||
</AsyncLogger> | ||
|
||
<!-- synchronous loggers --> | ||
<Root level="info"> | ||
<AppenderRef ref="LogToConsole"/> | ||
</Root> | ||
</Loggers> | ||
</Configuration> |
Binary file not shown.
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
Oops, something went wrong.