From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.mhcomputing.net (master.mhcomputing.net [74.208.228.170]) by dpdk.org (Postfix) with ESMTP id 01D55939A for ; Fri, 13 Nov 2015 07:47:59 +0100 (CET) Received: from sdn-sensor.attlocal.net (99-34-229-174.lightspeed.sntcca.sbcglobal.net [99.34.229.174]) by mail.mhcomputing.net (Postfix) with ESMTPSA id 000AAD8; Fri, 13 Nov 2015 01:47:57 -0500 (EST) From: Matthew Hall To: dev@dpdk.org Date: Fri, 13 Nov 2015 06:47:33 +0000 Message-Id: <1447397258-27233-2-git-send-email-mhall@mhcomputing.net> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1447397258-27233-1-git-send-email-mhall@mhcomputing.net> References: <1447397258-27233-1-git-send-email-mhall@mhcomputing.net> Subject: [dpdk-dev] [PATCH 1/6] librte_log: add function to retrieve log_level X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Nov 2015 06:47:59 -0000 Signed-off-by: Matthew Hall --- lib/librte_eal/common/include/rte_log.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_eal/common/include/rte_log.h b/lib/librte_eal/common/include/rte_log.h index ede0dca..9dad24e 100644 --- a/lib/librte_eal/common/include/rte_log.h +++ b/lib/librte_eal/common/include/rte_log.h @@ -131,6 +131,7 @@ void rte_set_log_level(uint32_t level); /** * Get the global log level. + * */ uint32_t rte_get_log_level(void); -- 1.9.1