Browse Source

Remove vagrant debug logging (#58629)

Previously we had odd issues in CI with vagrant which we attempted to
diagnose by enabling debug logging within our vagrant commands. However,
the debug logging didn't explain anything additional to the failures,
and it is extremely verbose. This commit removes the debug logging.
Ryan Ernst 5 years ago
parent
commit
04a6781803

+ 0 - 1
buildSrc/src/main/java/org/elasticsearch/gradle/vagrant/VagrantMachine.java

@@ -75,7 +75,6 @@ public class VagrantMachine {
             execSpec.setEnvironment(System.getenv()); // pass through env
             execSpec.environment("VAGRANT_CWD", vagrantfile.getParentFile().toString());
             execSpec.environment("VAGRANT_VAGRANTFILE", vagrantfile.getName());
-            execSpec.environment("VAGRANT_LOG", "debug");
             extension.getHostEnv().forEach(execSpec::environment);
 
             execSpec.args(vagrantSpec.command);