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:
Ryan Ernst 2020-06-29 13:30:33 -07:00 committed by Ryan Ernst
parent 719f2fb135
commit 67a5a2bb60
No known key found for this signature in database
GPG Key ID: 5F7EA39E15F54DCE
1 changed files with 0 additions and 1 deletions

View File

@ -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);