This commit is contained in:
r_takaishi 2020-03-09 11:58:53 +09:00
parent 0c6249df7f
commit a0dfcf3715
1 changed files with 3 additions and 3 deletions

View File

@ -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 {