fix raw response log

This commit is contained in:
Andrea Franz 2019-04-03 12:01:36 +02:00
parent 1025cd3f48
commit ab0161d301
No known key found for this signature in database
GPG Key ID: 4F0D2F2D9DE7F29D
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ func (s *Shell) commandGPSendAPDU(args ...string) error {
logger.Error("send apdu failed", "error", err)
return err
}
logger.Info(fmt.Sprintf("raw response: %x", resp))
logger.Info("raw response", "hex", fmt.Sprintf("%x", resp))
return nil
}