diff --git a/backend/box/api/types.go b/backend/box/api/types.go index f8e92638f..b96349903 100644 --- a/backend/box/api/types.go +++ b/backend/box/api/types.go @@ -52,7 +52,7 @@ func (e *Error) Error() string { out += ": " + e.Message } if e.ContextInfo != nil { - out += fmt.Sprintf(" (%+v)", e.ContextInfo) + out += fmt.Sprintf(" (%s)", string(e.ContextInfo)) } return out }