mirror of
https://github.com/hashicorp/packer.git
synced 2026-07-15 03:57:06 -04:00
Use 'log.Printf()' for StepDownload debug instead of 'ui.Say()'.
This commit is contained in:
parent
a0a11bd109
commit
e362d2f3ee
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ type StepDownload struct {
|
|||
|
||||
func (s *StepDownload) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
|
||||
ui := state.Get("ui").(packer.Ui)
|
||||
defer ui.Say(fmt.Sprintf("leaving retrieve loop for %s", s.Description))
|
||||
defer log.Printf("Leaving retrieve loop for %s", s.Description)
|
||||
|
||||
ui.Say(fmt.Sprintf("Retrieving %s", s.Description))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue