From c323b930eaeb779a973e95b1202223164a5e2b02 Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Fri, 29 Sep 2023 09:02:58 +0300 Subject: [PATCH] zebra: Drop new lines from zlog_debug for dpdk debug messages Signed-off-by: Donatas Abraitis --- zebra/dpdk/zebra_dplane_dpdk.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zebra/dpdk/zebra_dplane_dpdk.c b/zebra/dpdk/zebra_dplane_dpdk.c index fc140b07a3..4c32044251 100644 --- a/zebra/dpdk/zebra_dplane_dpdk.c +++ b/zebra/dpdk/zebra_dplane_dpdk.c @@ -611,11 +611,11 @@ static void zd_dpdk_port_init(void) if (rte_flow_isolate(port_id, 1, &error)) { if (IS_ZEBRA_DEBUG_DPLANE_DPDK) zlog_debug( - "Flow isolate on port %u failed %d\n", + "Flow isolate on port %u failed %d", port_id, error.type); } else { if (IS_ZEBRA_DEBUG_DPLANE_DPDK) - zlog_debug("Flow isolate on port %u\n", + zlog_debug("Flow isolate on port %u", port_id); } rc = rte_eth_dev_start(port_id); -- 2.39.5