You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
802 B
26 lines
802 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<configuration>
|
|
|
|
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
|
|
<encoder>
|
|
<pattern>%d{HH:mm:ss.SSS} [%-5level] %logger{15} - %msg%n%rEx</pattern>
|
|
</encoder>
|
|
<immediateFlush>false</immediateFlush>
|
|
</appender>
|
|
|
|
<!-- uncomment and set to DEBUG to log all failing HTTP requests -->
|
|
<!-- uncomment and set to TRACE to log all HTTP requests -->
|
|
<!--<logger name="io.gatling.http.engine.response" level="TRACE" />-->
|
|
|
|
<!-- uncomment to log WebSocket events -->
|
|
<!--<logger name="io.gatling.http.action.ws.fsm" level="DEBUG" />-->
|
|
|
|
<!-- uncomment to log SSE events -->
|
|
<!--<logger name="io.gatling.http.action.sse.fsm" level="DEBUG" />-->
|
|
|
|
<root level="WARN">
|
|
<appender-ref ref="CONSOLE" />
|
|
</root>
|
|
|
|
</configuration>
|