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).

(cherry picked from commit cc2048b)
  • Loading branch information
dimas-b authored and gsmet committed Nov 15, 2022
1 parent 012b035 commit 7a2a695
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 7a2a695

Please sign in to comment.