From 829d1231bfae129a257ed7baa713ee4c2b1d8fad Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 15 Mar 2010 15:46:53 -0700 Subject: [PATCH] Add log output to VM customization --- lib/vagrant/actions/vm/customize.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/vagrant/actions/vm/customize.rb b/lib/vagrant/actions/vm/customize.rb index 076038c51..b9035b18c 100644 --- a/lib/vagrant/actions/vm/customize.rb +++ b/lib/vagrant/actions/vm/customize.rb @@ -3,6 +3,8 @@ module Vagrant module VM class Customize < Base def execute! + logger.info "Running any VM customizations..." + # Run the customization procs over the VM Vagrant.config.vm.run_procs!(@runner.vm)