This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 046303d8a3e3a058667f12fe873a7e7286f6a781 Author: Benoit Tellier <[email protected]> AuthorDate: Mon Mar 23 11:23:56 2020 +0700 JAMES-2893 Move test-run.log in target This prevents intelliJ from thinking this is a build file and to think log FQDN is a class reference... --- testing/base/src/main/resources/logback-test.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/base/src/main/resources/logback-test.xml b/testing/base/src/main/resources/logback-test.xml index 19ebfff..aa05a3d 100644 --- a/testing/base/src/main/resources/logback-test.xml +++ b/testing/base/src/main/resources/logback-test.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <configuration> <appender name="FILE" class="ch.qos.logback.core.FileAppender"> - <file>test-run.log</file> + <file>target/test-run.log</file> <append>false</append> <!-- set immediateFlush to false for much higher logging throughput --> <immediateFlush>false</immediateFlush> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
