From ed57daf60aafb42840e9b46c66883a326efa2b68 Mon Sep 17 00:00:00 2001 From: Igor Ryzhov Date: Tue, 23 Jan 2024 12:36:22 +0200 Subject: [PATCH] mgmtd: remove unguarded debug log The log doesn't provide any valuable information, so removing it instead of adding a check. Signed-off-by: Igor Ryzhov --- mgmtd/mgmt_txn.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/mgmtd/mgmt_txn.c b/mgmtd/mgmt_txn.c index b4b67b455158..c19b39c6966d 100644 --- a/mgmtd/mgmt_txn.c +++ b/mgmtd/mgmt_txn.c @@ -1481,8 +1481,6 @@ static void mgmt_reset_get_data_reply(struct mgmt_get_data_reply *get_reply) get_reply->reply_xpathp[indx] = 0; } if (get_reply->reply_data[indx].xpath) { - zlog_debug("%s free xpath %p", __func__, - get_reply->reply_data[indx].xpath); free(get_reply->reply_data[indx].xpath); get_reply->reply_data[indx].xpath = 0; }