diff --git a/providers/hexonet/error.go b/providers/hexonet/error.go index e4197ac16..6713110ba 100644 --- a/providers/hexonet/error.go +++ b/providers/hexonet/error.go @@ -8,5 +8,5 @@ import ( // GetHXApiError returns an error including API error code and error description. func (n *HXClient) GetHXApiError(format string, objectid string, r *response.Response) error { - return fmt.Errorf(format+" %s. [%s %s]", objectid, r.GetCode(), r.GetDescription()) + return fmt.Errorf(format+" %q. [%v %s]", objectid, r.GetCode(), r.GetDescription()) }