From 97500693123f46bbd71e0142a547b5d67f031eba Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 22 Feb 2013 14:43:43 -0800 Subject: [PATCH] Better logging around environment hooks --- lib/vagrant/environment.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/vagrant/environment.rb b/lib/vagrant/environment.rb index 8cbe2d642..f663788ed 100644 --- a/lib/vagrant/environment.rb +++ b/lib/vagrant/environment.rb @@ -244,6 +244,7 @@ module Vagrant # # @param [Symbol] name Name of the hook. def hook(name) + @logger.info("Running hook: #{name}") callable = Proc.new {} action_runner.run(callable, :action_name => name) end