From 1df13259e44845cdfd89d7bf9536d4a09fdf7b28 Mon Sep 17 00:00:00 2001 From: Joe Stringer Date: Thu, 12 Dec 2013 05:46:22 +0000 Subject: [PATCH] ovs-thread: Reduce logging level for cpuinfo parsing This was causing test failures on non-Linux platforms. Reported-by: Ed Maste Signed-off-by: Joe Stringer Signed-off-by: Ethan Jackson Acked-by: Ethan Jackson --- lib/ovs-thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ovs-thread.c b/lib/ovs-thread.c index 1a633cfe7..dcaf7ff9a 100644 --- a/lib/ovs-thread.c +++ b/lib/ovs-thread.c @@ -326,7 +326,7 @@ parse_cpuinfo(long int *n_cores) stream = fopen(file_name, "r"); if (!stream) { - VLOG_WARN("%s: open failed (%s)", file_name, ovs_strerror(errno)); + VLOG_DBG("%s: open failed (%s)", file_name, ovs_strerror(errno)); return; } -- 2.47.0