From 977733790a5f73a3c17af23030f07efe51a6218d Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Fri, 30 Sep 2016 12:16:53 -0700 Subject: [PATCH] Include debug notification when using subprocess --- lib/vagrant/util/safe_exec.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/vagrant/util/safe_exec.rb b/lib/vagrant/util/safe_exec.rb index 98875ac3b..37e6a38c3 100644 --- a/lib/vagrant/util/safe_exec.rb +++ b/lib/vagrant/util/safe_exec.rb @@ -23,6 +23,7 @@ module Vagrant begin if fork_instead if Vagrant::Util::Platform.windows? + @@logger.debug("Using subprocess because windows platform") args = args.dup << {notify: [:stdout, :stderr]} result = Vagrant::Util::Subprocess.execute(command, *args) do |type, data| case type