Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Eclipse Projects
Eclipse openK User Modules
org.eclipse.openk-usermodules.gridFailureInformation.backend
Commits
ff793c0a
Commit
ff793c0a
authored
Apr 09, 2020
by
Simon Reis
Browse files
SI-408 Auf Q deployen
parent
01eabef1
Changes
1
Hide whitespace changes
Inline
Side-by-side
addressImport/src/main/resources/logback-spring.xml
0 → 100644
View file @
ff793c0a
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<property
name=
"LOGS"
value=
"./logs"
/>
<appender
name=
"Console"
class=
"ch.qos.logback.core.ConsoleAppender"
>
<layout
class=
"ch.qos.logback.classic.PatternLayout"
>
<Pattern>
%black(%d{ISO8601}) %highlight(%-5level) [%blue(%t)] %yellow(%c{60}): %msg%n%throwable
</Pattern>
</layout>
</appender>
<appender
name=
"RollingFile"
class=
"ch.qos.logback.core.rolling.RollingFileAppender"
>
<file>
${LOGS}/addressImport.log
</file>
<encoder
class=
"ch.qos.logback.classic.encoder.PatternLayoutEncoder"
>
<Pattern>
%d %p %c{60} [%t] %m%n
</Pattern>
</encoder>
<rollingPolicy
class=
"ch.qos.logback.core.rolling.TimeBasedRollingPolicy"
>
<fileNamePattern>
${LOGS}/archived/addressImport-%d{yyyy-MM-dd}.gz
</fileNamePattern>
<MaxHistory>
30
</MaxHistory>
<cleanHistoryOnStart>
true
</cleanHistoryOnStart>
</rollingPolicy>
</appender>
<!-- LOG everything at INFO level -->
<root
level=
"info"
>
<appender-ref
ref=
"RollingFile"
/>
<appender-ref
ref=
"Console"
/>
</root>
<!-- LOG "com.baeldungorg.eclipse.openk.contactbasedata*" at INFO level -->
<logger
name=
"org.eclipse.openk.gridfailureinformation.importadresses"
level=
"info"
additivity=
"false"
>
<appender-ref
ref=
"RollingFile"
/>
<appender-ref
ref=
"Console"
/>
</logger>
</configuration>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment