-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
93936e8
commit 0b77565
Showing
3 changed files
with
35 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ target/ | |
!**/src/main/**/target/ | ||
!**/src/test/**/target/ | ||
data/ | ||
logs/ | ||
spring-shell.log | ||
|
||
### STS ### | ||
|
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,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<configuration status="off"> | ||
<appenders> | ||
<Console name="Console" target="SYSTEM_OUT"> | ||
<PatternLayout pattern="%d{ISO8601} %-5p %X{loginId} %c{1}: %m%n%ex" /> | ||
</Console> | ||
<RollingFile name="RollingFile" fileName="logs/importer-app.log" | ||
filePattern="logs/$${date:yyyy-MM}/importerapp-%d{MM-dd-yyyy}-%i.log.gz"> | ||
<PatternLayout> | ||
<Pattern>%highlight{%d{ISO8601} %-5p %X{loginId} %c{1}: %m%n%ex}</Pattern> | ||
</PatternLayout> | ||
<Policies> | ||
<TimeBasedTriggeringPolicy /> | ||
<SizeBasedTriggeringPolicy size="250 MB"/> | ||
</Policies> | ||
</RollingFile> | ||
</appenders> | ||
<loggers> | ||
<root level="info"> | ||
<appender-ref ref="Console" /> | ||
<appender-ref ref="RollingFile" /> | ||
</root> | ||
</loggers> | ||
</configuration> |