From f801313a669525cd7edc16f2f82dfc03a5452ac9 Mon Sep 17 00:00:00 2001 From: Oleg Zhurakousky Date: Tue, 4 Aug 2020 16:40:27 +0200 Subject: [PATCH] GH-2011 Remove log override from test binder Resolves #2011 --- .../stream/binder/BinderTestEnvironmentPostProcessor.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spring-cloud-stream-binder-test/src/main/java/org/springframework/cloud/stream/binder/BinderTestEnvironmentPostProcessor.java b/spring-cloud-stream-binder-test/src/main/java/org/springframework/cloud/stream/binder/BinderTestEnvironmentPostProcessor.java index 8bdd78318..bcea76db1 100644 --- a/spring-cloud-stream-binder-test/src/main/java/org/springframework/cloud/stream/binder/BinderTestEnvironmentPostProcessor.java +++ b/spring-cloud-stream-binder-test/src/main/java/org/springframework/cloud/stream/binder/BinderTestEnvironmentPostProcessor.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 the original author or authors. + * Copyright 2016-2020 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -38,7 +38,6 @@ public class BinderTestEnvironmentPostProcessor implements EnvironmentPostProces Map propertiesToAdd = new HashMap<>(); propertiesToAdd.put("logging.pattern.console", "%d{ISO8601} %5p %t %c{2}:%L - %m%n"); - propertiesToAdd.put("logging.level.root", "WARN"); environment.getPropertySources().addLast( new MapPropertySource("binderTestPropertiesConfig", propertiesToAdd)); }