From b862d49c532d4ae4c6ec20c1184e74adac5aac97 Mon Sep 17 00:00:00 2001 From: Rudi Floren Date: Thu, 29 Jun 2023 15:02:44 +0200 Subject: [PATCH] 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. --- src/client.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/client.rs b/src/client.rs index 054f043..a22c2cc 100644 --- a/src/client.rs +++ b/src/client.rs @@ -149,7 +149,6 @@ impl EppClient { tr_ids: rsp.tr_ids, })); - error!(%response, "Failed to deserialize response for transaction: {}", err); Err(err) }