This commit aligns the names for dynamic logging with
the newly defined logging format.
Note that the "lio" term has been replaced with "liquidio",
as the naming scheme defines that a PMD name should be the
same as the directory that it lives in: drivers/net/liquidio
Signed-off-by: Harry van Haaren <harry.van.haaren@intel.com>
Acked-by: Shijith Thotton <shijith.thotton@caviumnetworks.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
static void
lio_init_log(void)
{
- lio_logtype_init = rte_log_register("pmd.lio.init");
+ lio_logtype_init = rte_log_register("pmd.net.liquidio.init");
if (lio_logtype_init >= 0)
rte_log_set_level(lio_logtype_init, RTE_LOG_NOTICE);
- lio_logtype_driver = rte_log_register("pmd.lio.driver");
+ lio_logtype_driver = rte_log_register("pmd.net.liquidio.driver");
if (lio_logtype_driver >= 0)
rte_log_set_level(lio_logtype_driver, RTE_LOG_NOTICE);
}