Skip to content
Snippets Groups Projects
Commit 86fdf235 authored by Guillaume Caillet's avatar Guillaume Caillet
Browse files

AWS - Define the log level for http.wire to avoid logging of credentials in the Pipeline logs

parent 9166a107
No related branches found
No related tags found
1 merge request!497AWS - Define the log level for http.wire to avoid logging of credentials in the Pipeline logs
Pipeline #252543 failed
<configuration>
<appender name="consoleAppender" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<logger name="org.opengroup.osdu" level="debug"/>
<logger name="org.apache.http.headers" level="debug"/>
<!-- /!\ Enabling DEBUG level for `http.wire` will dump all the requests body in the logs
This could lead to leaked credentials in the Pipeline -->
<logger name="org.apache.http.wire" level="info"/>
<root level="info">
<appender-ref ref="consoleAppender" />
</root>
</configuration>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment