Skip to content

Commit

Permalink
Fix default logback configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Oct 21, 2020
1 parent e196b21 commit 63fd7f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public static Path findLogbackConfigurationPath(Supplier<Properties> mvndPropert
return LOGBACK_CONFIGURATION_FILE
.systemProperty()
.orLocalProperty(mvndProperties, mvndPropertiesPath)
.orDefault(() -> mvndHome.resolve("conf/logging/logback.xml").toString())
.orDefault(() -> mvndHome.resolve("mvn/conf/logging/logback.xml").toString())
.orFail()
.asPath();
}
Expand Down

0 comments on commit 63fd7f3

Please sign in to comment.