ovsdb: avoid duplicate logging for call response

We already log the response during _call_complete(), which is called just
a few lines below. Don't duplicate the verbose message.
This commit is contained in:
Thomas Haller 2023-04-04 12:46:29 +02:00
parent c84340a9cb
commit 98f9a9bc37
No known key found for this signature in database
GPG key ID: 29C2366E4DFC5728

View file

@ -2360,9 +2360,6 @@ ovsdb_got_msg(NMOvsdb *self, json_t *msg)
ovsdb_disconnect(self, FALSE, FALSE);
return;
}
/* Cool, we found a corresponding call. Finish it. */
_LOGT_call(call, "response: %s", (msg_as_str = json_dumps(msg, 0)));
if (!json_is_null(error)) {
/* The response contains an error. */