Skip to content

Commit

Permalink
chore(deps): upgrade version
Browse files Browse the repository at this point in the history
  • Loading branch information
heowc committed Nov 16, 2024
1 parent 89a5dae commit a0c7860
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ private static String determineDestination(Project project, @Nullable String des

private Stream<String> logging(Project project, @Nullable List<String> logging) {
if (project.getGradle().getStartParameter().getLogLevel() == LogLevel.DEBUG) {
return Stream.of("--logging.level.root=DEBUG");
return Stream.of("-Dlogging.level.root=DEBUG");
}
return Stream.ofNullable(logging)
.filter(Objects::nonNull)
.flatMap(Collection::stream)
.filter(Objects::nonNull)
.map(it -> "--logging.level." + it);
.map(it -> "-Dlogging.level." + it);
}

}

0 comments on commit a0c7860

Please sign in to comment.