summaryrefslogtreecommitdiff
path: root/infra/packet_io
diff options
context:
space:
mode:
authorluwenpeng <[email protected]>2024-09-29 16:50:25 +0800
committerluwenpeng <[email protected]>2024-10-09 16:27:52 +0800
commitc5d7208c11664609f4e1655d65feb44e025b2cdb (patch)
treec648b1a0c6dc65b80d1f8a431d05bf01adc11775 /infra/packet_io
parent9e954386fd868d358bb18d2fcffc92dfe601bf5e (diff)
Added session debugger module for debugging session messages
Diffstat (limited to 'infra/packet_io')
-rw-r--r--infra/packet_io/packet_io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/packet_io/packet_io.c b/infra/packet_io/packet_io.c
index 897f2c9..68b4f12 100644
--- a/infra/packet_io/packet_io.c
+++ b/infra/packet_io/packet_io.c
@@ -228,7 +228,7 @@ static void packet_io_config_print(const struct packet_io_config *cfg)
PACKET_IO_LOG_INFO("packet_io.nr_worker_thread : %d", cfg->nr_worker_thread);
for (uint16_t i = 0; i < cfg->nr_worker_thread; i++)
{
- PACKET_IO_LOG_INFO("packet_io.cpu_mask[%03d] : %d", i, cfg->cpu_mask[i]);
+ PACKET_IO_LOG_INFO("packet_io.cpu_mask[%03d] : %d", i, cfg->cpu_mask[i]);
}
PACKET_IO_LOG_INFO("packet_io.idle_yield_interval_ms : %lu", cfg->idle_yield_interval_ms);
}