Skip to content

Commit d188dda

Browse files
committed
Move docker-compose logging statement to debug (#52107)
When docker-compose is required for a test fixture but is not available, we warn log a message to this effect. This ends up being noise during configuration, especially when working locally. This commit changes the logging level of these messages to debug.
1 parent 610f681 commit d188dda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildSrc/src/main/java/org/elasticsearch/gradle/testfixtures/TestFixturesPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public void apply(Project project) {
136136

137137
if (dockerComposeSupported() == false) {
138138
project.getLogger()
139-
.warn(
139+
.info(
140140
"Tests for {} require docker-compose at /usr/local/bin/docker-compose or /usr/bin/docker-compose "
141141
+ "but none could be found so these will be skipped",
142142
project.getPath()

0 commit comments

Comments
 (0)