From 8a6799effc4088f6b9108fd7f7969788dcf38fd7 Mon Sep 17 00:00:00 2001 From: Harry van Haaren Date: Thu, 25 Jan 2018 09:01:04 +0000 Subject: [PATCH] net/ixgbe: align dynamic log names with standard This commit aligns the names for dynamic logging with the newly defined logging format. Signed-off-by: Harry van Haaren Acked-by: Bruce Richardson --- drivers/net/ixgbe/ixgbe_ethdev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c index 37eb6685ad..fb26d3f4c2 100644 --- a/drivers/net/ixgbe/ixgbe_ethdev.c +++ b/drivers/net/ixgbe/ixgbe_ethdev.c @@ -8444,10 +8444,10 @@ RTE_INIT(ixgbe_init_log); static void ixgbe_init_log(void) { - ixgbe_logtype_init = rte_log_register("pmd.ixgbe.init"); + ixgbe_logtype_init = rte_log_register("pmd.net.ixgbe.init"); if (ixgbe_logtype_init >= 0) rte_log_set_level(ixgbe_logtype_init, RTE_LOG_NOTICE); - ixgbe_logtype_driver = rte_log_register("pmd.ixgbe.driver"); + ixgbe_logtype_driver = rte_log_register("pmd.net.ixgbe.driver"); if (ixgbe_logtype_driver >= 0) rte_log_set_level(ixgbe_logtype_driver, RTE_LOG_NOTICE); } -- 2.20.1