We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8caaec1 commit 455a404Copy full SHA for 455a404
1 file changed
src/main/java/eu/openanalytics/containerproxy/ContainerProxyApplication.java
@@ -167,6 +167,10 @@ public static Properties getDefaultProperties() {
167
properties.put("logging.include-application-name", "false");
168
// hide too verbose log message
169
properties.put("logging.level.org.mandas.docker.client.DefaultDockerClient", "WARN");
170
+ // hide confusing warnings
171
+ properties.put("logging.level.io.undertow.websockets.jsr", "ERROR");
172
+ properties.put("logging.level.org.springframework.validation.beanvalidation.OptionalValidatorFactoryBean", "WARN");
173
+ properties.put("logging.level.org.springframework.integration.config.DefaultConfiguringBeanFactoryPostProcessor", "WARN");
174
175
// Metrics configuration
176
// ====================
0 commit comments