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 8410F93AC for ; Fri, 13 Nov 2015 07:48:00 +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 ADC02D8; Fri, 13 Nov 2015 01:47:59 -0500 (EST) From: Matthew Hall To: dev@dpdk.org Date: Fri, 13 Nov 2015 06:47:36 +0000 Message-Id: <1447397258-27233-5-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 4/6] rte_log.h: update logging docs to include FINEST 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:48:00 -0000 Signed-off-by: Matthew Hall --- lib/librte_eal/common/include/rte_log.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/librte_eal/common/include/rte_log.h b/lib/librte_eal/common/include/rte_log.h index 7dc19e1..4a70ce5 100644 --- a/lib/librte_eal/common/include/rte_log.h +++ b/lib/librte_eal/common/include/rte_log.h @@ -128,7 +128,7 @@ int rte_openlog_stream(FILE *f); * displayed. * * @param level - * Log level. A value between RTE_LOG_EMERG (1) and RTE_LOG_DEBUG (8). + * Log level. A value between RTE_LOG_EMERG (1) and RTE_LOG_FINEST (11). */ void rte_set_log_level(uint32_t level); @@ -228,7 +228,7 @@ int rte_log_add_in_history(const char *buf, size_t size); * logs are automatically prefixed by type when using the macro. * * @param level - * Log level. A value between RTE_LOG_EMERG (1) and RTE_LOG_DEBUG (8). + * Log level. A value between RTE_LOG_EMERG (1) and RTE_LOG_FINEST (11). * @param logtype * The log type, for example, RTE_LOGTYPE_EAL. * @param format @@ -260,7 +260,7 @@ int rte_log(uint32_t level, uint32_t logtype, const char *format, ...) * removed at compilation time. * * @param level - * Log level. A value between RTE_LOG_EMERG (1) and RTE_LOG_DEBUG (8). + * Log level. A value between RTE_LOG_EMERG (1) and RTE_LOG_FINEST (11). * @param logtype * The log type, for example, RTE_LOGTYPE_EAL. * @param format @@ -289,7 +289,7 @@ int rte_vlog(uint32_t level, uint32_t logtype, const char *format, va_list ap) * RTE_LOG(INFO, EAL, "this is a %s", "log"); * * @param l - * Log level. A value between EMERG (1) and DEBUG (8). The short name is + * Log level. A value between EMERG (1) and FINEST (11). The short name is * expanded by the macro, so it cannot be an integer value. * @param t * The log type, for example, EAL. The short name is expanded by the -- 1.9.1