From cba5bca7de58070e98800fd0a3e91a9140bc37cc Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Mon, 2 Nov 2020 10:31:28 -0800 Subject: [PATCH] Use variable when sending info to logger --- lib/vagrant/action/runner.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/action/runner.rb b/lib/vagrant/action/runner.rb index dd36588e6..cdc3f30b4 100644 --- a/lib/vagrant/action/runner.rb +++ b/lib/vagrant/action/runner.rb @@ -85,7 +85,7 @@ module Vagrant action_name = environment[:action_name] # We place a process lock around every action that is called - @logger.info("Running action: #{environment[:action_name]} #{callable_id}") + @logger.info("Running action: #{action_name} #{callable_id}") Util::Busy.busy(int_callback) { callable.call(environment) } # Return the environment in case there are things in there that