Skip to content

Commit

Permalink
Move docker-compose logging statement to debug (#52107)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jasontedor committed Feb 10, 2020
1 parent 610f681 commit d188dda
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public void apply(Project project) {

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

0 comments on commit d188dda

Please sign in to comment.