nice log print

pull/314/head
Darien Raymond 2016-11-27 08:47:11 +01:00
parent ccbd6da20e
commit b3c5b6b8a2
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ func InterfaceToString(value interface{}) string {
case []byte:
return serial.BytesToHexString(value)
default:
return fmt.Sprint(value)
return fmt.Sprintf("%+v", value)
}
}