GH-2011 Remove log override from test binder

Resolves #2011
This commit is contained in:
Oleg Zhurakousky
2020-08-04 16:40:27 +02:00
parent 43b31c927a
commit f801313a66

View File

@@ -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<String, Object> 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));
}