From: Joe Stringer Date: Thu, 12 Dec 2013 05:46:22 +0000 (+0000) Subject: ovs-thread: Reduce logging level for cpuinfo parsing X-Git-Tag: sliver-openvswitch-2.1.90-1~10^2~213 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=1df13259e44845cdfd89d7bf9536d4a09fdf7b28;p=sliver-openvswitch.git 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 --- 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; }