eal: remove undue printf
authorOlivier Matz <olivier.matz@6wind.com>
Tue, 18 Apr 2017 14:22:23 +0000 (16:22 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 19 Apr 2017 23:29:46 +0000 (01:29 +0200)
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 <ferruh.yigit@intel.com>
Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
lib/librte_eal/common/eal_common_options.c

index e9b45c4..f470195 100644 (file)
@@ -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) {