From 75f34e4d02c4f83332d6972ebd487495d885909a Mon Sep 17 00:00:00 2001 From: Vladimir Tsanev Date: Fri, 13 Oct 2017 16:08:30 +0300 Subject: [PATCH] DATAES-361 - Move Log4j2 config file to test sources. The configuration file for Log4j2 had been added to src/main/resources accidentally which caused it to be picked up by user applications, e.g. in a Spring Boot application effectively disabling Boot's auto-configuration. This file has now been moved to the test resources. Original pull request: #191. Related tickets: spring-projects/spring-boot#10634 --- src/{main => test}/resources/log4j2.xml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/{main => test}/resources/log4j2.xml (100%) diff --git a/src/main/resources/log4j2.xml b/src/test/resources/log4j2.xml similarity index 100% rename from src/main/resources/log4j2.xml rename to src/test/resources/log4j2.xml