Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
org.eclipse.openk-usermodules.gridFailureInformation.backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
Eclipse openK User Modules
org.eclipse.openk-usermodules.gridFailureInformation.backend
Commits
6337536b
Commit
6337536b
authored
5 years ago
by
Simon Reis
Browse files
Options
Downloads
Patches
Plain Diff
SI-147 Jenkins Jobs für Master FE/BE erstellen
parent
3530b9fb
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gfsBackendService/src/main/resources/logback-spring.xml
+40
-0
40 additions, 0 deletions
gfsBackendService/src/main/resources/logback-spring.xml
with
40 additions
and
0 deletions
gfsBackendService/src/main/resources/logback-spring.xml
0 → 100644
+
40
−
0
View file @
6337536b
<?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}/contact-base-data.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/grid-failure-information-%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"
level=
"info"
additivity=
"false"
>
<appender-ref
ref=
"RollingFile"
/>
<appender-ref
ref=
"Console"
/>
</logger>
</configuration>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment