Fix default logback configuration file

This commit is contained in:
Guillaume Nodet
2020-10-21 15:10:08 +02:00
parent d8f75d98ff
commit 7d60a403fd

View File

@@ -140,7 +140,7 @@ public enum Environment {
return LOGBACK_CONFIGURATION_FILE return LOGBACK_CONFIGURATION_FILE
.systemProperty() .systemProperty()
.orLocalProperty(mvndProperties, mvndPropertiesPath) .orLocalProperty(mvndProperties, mvndPropertiesPath)
.orDefault(() -> mvndHome.resolve("conf/logging/logback.xml").toString()) .orDefault(() -> mvndHome.resolve("mvn/conf/logging/logback.xml").toString())
.orFail() .orFail()
.asPath(); .asPath();
} }