When log level is set to 7 (INFO) these messages are still displayed
and should be set to DEBUG.
Signed-off-by: Keith Wiles <keith.wiles@intel.com>
int
rte_eal_memory_init(void)
{
- RTE_LOG(INFO, EAL, "Setting up physically contiguous memory...\n");
+ RTE_LOG(DEBUG, EAL, "Setting up physically contiguous memory...\n");
const int retval = rte_eal_process_type() == RTE_PROC_PRIMARY ?
rte_eal_hugepage_init() :
if (!freq)
freq = estimate_tsc_freq();
- RTE_LOG(INFO, EAL, "TSC frequency is ~%" PRIu64 " KHz\n", freq / 1000);
+ RTE_LOG(DEBUG, EAL, "TSC frequency is ~%" PRIu64 " KHz\n", freq / 1000);
eal_tsc_resolution_hz = freq;
}
/* return 0 if VFIO modules not loaded */
if (vfio_available == 0) {
- RTE_LOG(INFO, EAL, "VFIO modules not loaded, "
+ RTE_LOG(DEBUG, EAL, "VFIO modules not loaded, "
"skipping VFIO support...\n");
return 0;
}