forked from eclipse-californium/californium
-
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.
Swap OSCORE and CongestionControl layers. Add logback configuration for unittests. Issue eclipse-californium#2294 Signed-off-by: Achim Kraus <[email protected]>
- Loading branch information
Showing
2 changed files
with
23 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<configuration> | ||
|
||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
<!-- encoders are assigned the type ch.qos.logback.classic.encoder.PatternLayoutEncoder | ||
by default --> | ||
<encoder> | ||
<pattern>%d{HH:mm:ss.SSS} %level [%logger{0}]: %msg \(%class{25}.%method:%line\)%n</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<logger name="ch.qos.logback" level="ERROR" additivity="false"> | ||
<appender-ref ref="STDOUT" /> | ||
</logger> | ||
|
||
<!-- Strictly speaking, the level attribute is not necessary since --> | ||
<!-- the level of the root level is set to DEBUG by default. --> | ||
<root level="WARN"> | ||
<appender-ref ref="STDOUT" /> | ||
</root> | ||
|
||
</configuration> |