From: Olivier Matz Date: Tue, 24 Jan 2017 16:21:12 +0000 (+0100) Subject: eal: fix warning about debug log at startup X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=ec7df18bb70ec6900892c6e47a29ce1cb2b07702;p=dpdk.git eal: fix warning about debug log at startup The log "Debug logs available - lower performance" should now only be displayed when dataplane debug logs are enabled. The issue occurs only if the default log level (CONFIG_RTE_LOG_LEVEL) is set to DEBUG in the configuration, which is not the case by default. Fixes: 5d8f0baf69ea ("log: do not drop debug logs at compile time") Signed-off-by: Olivier Matz --- diff --git a/lib/librte_eal/common/eal_common_log.c b/lib/librte_eal/common/eal_common_log.c index e45d326916..2197558388 100644 --- a/lib/librte_eal/common/eal_common_log.c +++ b/lib/librte_eal/common/eal_common_log.c @@ -176,7 +176,8 @@ eal_log_set_default(FILE *default_log) { default_log_stream = default_log; -#if RTE_LOG_LEVEL >= RTE_LOG_DEBUG - RTE_LOG(NOTICE, EAL, "Debug logs available - lower performance\n"); +#if RTE_LOG_DP_LEVEL >= RTE_LOG_DEBUG + RTE_LOG(NOTICE, EAL, + "Debug dataplane logs available - lower performance\n"); #endif }