Skip to content

Commit

Permalink
Demote the "test dir mapping" log message to debug
Browse files Browse the repository at this point in the history
This log message of the gradle application plugin seems to be
unnecessary and confusing to the ordinary plugin user (i.e.
a developer building a Quarkus application with Gradle).
  • Loading branch information
dimas-b committed Nov 8, 2022
1 parent d3d7663 commit cc2048b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void beforeTest(Test task) {
project.relativePath(outputDirectoryAsFile)))
.collect(Collectors.joining(","));
task.environment(BootstrapConstants.TEST_TO_MAIN_MAPPINGS, fileList);
project.getLogger().lifecycle("test dir mapping - {}", fileList);
project.getLogger().debug("test dir mapping - {}", fileList);

final String nativeRunner = task.getProject().getBuildDir().toPath().resolve(finalName() + "-runner")
.toAbsolutePath()
Expand Down

0 comments on commit cc2048b

Please sign in to comment.