mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 19:10:28 +03:00
f2a35ee922
* Canton conformance test debug logging and reduced test parallelism To reign in flakiness of a handful of TransactionServiceIT tests that had run into timeouts during synchronize Closes #7316 changelog_begin changelog_end * Review feedback from Stefano
23 lines
938 B
XML
23 lines
938 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<configuration debug="false">
|
|
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
|
<encoder>
|
|
<!-- attempt to place the correlation-id with a trailing space, however replace with an empty string if it's empty -->
|
|
<pattern>%date [%thread] %-5level %logger{10} %replace(cid:%mdc{correlation-id} ){'cid: ', ''}- %msg%n</pattern>
|
|
</encoder>
|
|
</appender>
|
|
|
|
<root level="INFO">
|
|
<appender-ref ref="STDOUT" />
|
|
</root>
|
|
|
|
<!-- Note that com.daml logs valuable info at TRACE level.
|
|
Set to TRACE for troubleshooting.
|
|
-->
|
|
<logger name="com.daml" level="DEBUG"/>
|
|
<!-- canton logs left at INFO to keep in check log file length and readability to "general daml-ledger" audience -->
|
|
<logger name="com.digitalasset" level="INFO"/>
|
|
<!-- netty reports ssl errors on DEBUG level ... -->
|
|
<logger name="io.netty.handler.ssl" level="INFO"/>
|
|
</configuration>
|