remove unnecessary log line.

This commit is contained in:
Matthew Hooker 2018-04-19 16:13:24 -07:00
parent 374d8f089f
commit 11de2b9759
No known key found for this signature in database
GPG Key ID: 7B5F933D9CE8C6A1
1 changed files with 0 additions and 2 deletions

View File

@ -3,7 +3,6 @@ package common
import (
"context"
"fmt"
"log"
"time"
packer_common "github.com/hashicorp/packer/common"
@ -78,7 +77,6 @@ func (s *StepTypeBootCommand) Run(ctx context.Context, state multistep.StateBag)
}
sendCodes := func(codes []string) error {
log.Printf("Sending scancodes: %#v", codes)
return driver.SendKeyScanCodes(s.VMName, codes...)
}
d := bootcommand.NewPCXTDriver(sendCodes, -1)