From: Olivier Matz Date: Tue, 18 Apr 2017 14:22:23 +0000 (+0200) Subject: eal: remove undue printf X-Git-Tag: spdx-start~3483 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=ea85e941d2f7f86ee67a411592be2682016ae0c7;p=dpdk.git eal: remove undue printf Remove the printf displaying the log level at initialization. It was introduced for debug purpose, but was not intended to be pushed. Fixes: 845afe51e428 ("eal: change specific log levels at startup") Reported-by: Ferruh Yigit Signed-off-by: Olivier Matz Acked-by: Ferruh Yigit --- diff --git a/lib/librte_eal/common/eal_common_options.c b/lib/librte_eal/common/eal_common_options.c index e9b45c49a7..f470195f3d 100644 --- a/lib/librte_eal/common/eal_common_options.c +++ b/lib/librte_eal/common/eal_common_options.c @@ -762,9 +762,6 @@ eal_parse_log_level(const char *arg) if (tmp >= UINT32_MAX) goto fail; - printf("set log level %s,%lu\n", - type, tmp); - if (type == NULL) { rte_log_set_global_level(tmp); } else if (rte_log_set_level_regexp(type, tmp) < 0) {