From db5b236ad69f7ae47e2dd82131e704386dbe87cc Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 8 Aug 2013 17:12:04 -0700 Subject: [PATCH] command/fix: log fixer to run --- command/fix/command.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/command/fix/command.go b/command/fix/command.go index 1194d212f..9d4cc8115 100644 --- a/command/fix/command.go +++ b/command/fix/command.go @@ -6,6 +6,7 @@ import ( "flag" "fmt" "github.com/mitchellh/packer/packer" + "log" "os" "strings" ) @@ -61,6 +62,7 @@ func (c Command) Run(env packer.Environment, args []string) int { panic("fixer not found: " + name) } + log.Printf("Running fixer: %s", name) input, err = fixer.Fix(input) if err != nil { env.Ui().Error(fmt.Sprintf("Error fixing: %s", err))