-
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.
removed the log about logback status at startup
- Loading branch information
Filipponi, Luca (ELS)
committed
Sep 29, 2019
1 parent
62565ee
commit af7b100
Showing
3 changed files
with
9 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
<configuration> | ||
<statusListener class="ch.qos.logback.core.status.NopStatusListener" /> | ||
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> | ||
<layout class="ch.qos.logback.classic.PatternLayout"> | ||
<Pattern> | ||
%d{HH:mm:ss.SSS} - %msg%n | ||
</Pattern> | ||
</layout> | ||
</appender> | ||
<root level="error"> | ||
<root level="OFF"> | ||
<appender-ref ref="CONSOLE"/> | ||
</root> | ||
<logger name="com.filipponi" level="debug" additivity="false"> | ||
<logger name="com.filipponi" level="info" additivity="false"> | ||
<appender-ref ref="CONSOLE"/> | ||
</logger> | ||
</configuration> |
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