From 98f9a9bc37bd592387c5d5cd53efb1d1d14126a5 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Tue, 4 Apr 2023 12:46:29 +0200 Subject: [PATCH] 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. --- src/core/devices/ovs/nm-ovsdb.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/core/devices/ovs/nm-ovsdb.c b/src/core/devices/ovs/nm-ovsdb.c index 654ab4a44f..e4ee1d8f64 100644 --- a/src/core/devices/ovs/nm-ovsdb.c +++ b/src/core/devices/ovs/nm-ovsdb.c @@ -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. */