From a0dfcf3715ac90b8ea1568b1d8fcb0e93aad7819 Mon Sep 17 00:00:00 2001 From: r_takaishi Date: Mon, 9 Mar 2020 11:58:53 +0900 Subject: [PATCH] use log --- communicator/ssh/keyboard_interactive.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/communicator/ssh/keyboard_interactive.go b/communicator/ssh/keyboard_interactive.go index 66e7fef6d..5f1013bd3 100644 --- a/communicator/ssh/keyboard_interactive.go +++ b/communicator/ssh/keyboard_interactive.go @@ -13,10 +13,10 @@ func KeyboardInteractive() ssh.KeyboardInteractiveChallenge { return []string{}, nil } - log.Printf("-- User: %s", user) - log.Printf("-- Instructions: %s", instruction) + log.Printf("[INFO] -- User: %s", user) + log.Printf("[INFO] -- Instructions: %s", instruction) for i, question := range questions { - log.Printf("-- Question %d: %s", i+1, question) + log.Printf("[INFO] -- Question %d: %s", i+1, question) } answers := make([]string, len(questions)) for i := range questions {