ovs-thread: Reduce logging level for cpuinfo parsing
authorJoe Stringer <joestringer@nicira.com>
Thu, 12 Dec 2013 05:46:22 +0000 (05:46 +0000)
committerEthan Jackson <ethan@nicira.com>
Wed, 11 Dec 2013 22:04:29 +0000 (14:04 -0800)
This was causing test failures on non-Linux platforms.

Reported-by: Ed Maste <emaste@freebsd.org>
Signed-off-by: Joe Stringer <joestringer@nicira.com>
Signed-off-by: Ethan Jackson <ethan@nicira.com>
Acked-by: Ethan Jackson <ethan@nicira.com>
lib/ovs-thread.c

index 1a633cf..dcaf7ff 100644 (file)
@@ -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;
     }