Remove misleading error log line (#22)

At this point, the serialization was successful, but rather the command
status is not a success as per `fn is_success`.
Removing this error log in favor of logging at the call-side.
This commit is contained in:
Rudi Floren 2023-06-29 15:02:44 +02:00 committed by GitHub
parent 76ad8db313
commit b862d49c53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -149,7 +149,6 @@ impl<C: Connector> EppClient<C> {
tr_ids: rsp.tr_ids,
}));
error!(%response, "Failed to deserialize response for transaction: {}", err);
Err(err)
}