From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Hall Subject: [PATCH 3/6] eal_common_log.c: reset default level to RTE_LOG_FINEST Date: Fri, 13 Nov 2015 06:47:35 +0000 Message-ID: <1447397258-27233-4-git-send-email-mhall@mhcomputing.net> References: <1447397258-27233-1-git-send-email-mhall@mhcomputing.net> To: dev@dpdk.org Return-path: Received: from mail.mhcomputing.net (master.mhcomputing.net [74.208.228.170]) by dpdk.org (Postfix) with ESMTP id 09F5D93A2 for ; Fri, 13 Nov 2015 07:47:59 +0100 (CET) In-Reply-To: <1447397258-27233-1-git-send-email-mhall@mhcomputing.net> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Signed-off-by: Matthew Hall --- lib/librte_eal/common/eal_common_log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_eal/common/eal_common_log.c b/lib/librte_eal/common/eal_common_log.c index 1ae8de7..510eeff 100644 --- a/lib/librte_eal/common/eal_common_log.c +++ b/lib/librte_eal/common/eal_common_log.c @@ -82,7 +82,7 @@ static struct log_history_list log_history; /* global log structure */ struct rte_logs rte_logs = { .type = ~0, - .level = RTE_LOG_DEBUG, + .level = RTE_LOG_FINEST, .file = NULL, }; -- 1.9.1