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.
This commit is contained in:
parent
719f2fb135
commit
67a5a2bb60
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue