From 34ba03d3cbc76e8f7238748fc3f0f016e5cfda1c Mon Sep 17 00:00:00 2001 From: allinwait Date: Fri, 13 Sep 2019 01:53:42 +0300 Subject: [PATCH] use printf for logging --- common/step_create_floppy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/step_create_floppy.go b/common/step_create_floppy.go index 9cd78dba8..128a0e78b 100644 --- a/common/step_create_floppy.go +++ b/common/step_create_floppy.go @@ -37,7 +37,7 @@ func (s *StepCreateFloppy) Run(ctx context.Context, state multistep.StateBag) mu if s.Label == "" { s.Label = "packer" } else { - log.Println("Floppy label is set to %s", s.Label) + log.Printf("Floppy label is set to %s", s.Label) } s.FilesAdded = make(map[string]bool)