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

Merge branch 'cailletg-fix-verbose-log' into 'master'

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

See merge request !534
parents f8b2a5c5 7913c295
No related branches found
No related tags found
1 merge request!534AWS - Define the log level for http.wire to avoid logging of credentials in the Pipeline logs
Pipeline #253595 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