From d4ade1415b7de0cf10eb66ea0ef24ee8ff04d964 Mon Sep 17 00:00:00 2001
From: Moe Jette <jette1@llnl.gov>
Date: Mon, 20 Nov 2006 20:38:01 +0000
Subject: [PATCH] Change some error() to debug() for multi-core.

---
 src/slurmd/slurmd/get_mach_stat.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/slurmd/slurmd/get_mach_stat.c b/src/slurmd/slurmd/get_mach_stat.c
index 762d87dbd56..7303cfab67c 100644
--- a/src/slurmd/slurmd/get_mach_stat.c
+++ b/src/slurmd/slurmd/get_mach_stat.c
@@ -528,7 +528,7 @@ get_cpuinfo(uint16_t numproc,
 			numcpu++;
 			curcpu = val;
 		    	if (val >= numproc) {	/* out of bounds, ignore */
-				error("cpuid is %u (> %d), ignored", 
+				debug("cpuid is %u (> %d), ignored", 
 					val, numproc);
 				continue;
 			}
@@ -580,7 +580,7 @@ get_cpuinfo(uint16_t numproc,
 			mincoreid = MIN(mincoreid, val);
 		} else if (chk_cpuinfo_uint32(buffer, "siblings", &val)) {
 		    	if (val >= numproc) {	/* out of bounds, ignore */
-				error("siblings is %u (> %d), ignored",
+				debug("siblings is %u (> %d), ignored",
 					val, numproc);
 				continue;
 			}
@@ -590,7 +590,7 @@ get_cpuinfo(uint16_t numproc,
 			minsibs = MIN(minsibs, val);
 		} else if (chk_cpuinfo_uint32(buffer, "cpu cores", &val)) {
 		    	if (val >= numproc) {	/* out of bounds, ignore */
-				error("cores is %u (> %d), ignored",
+				debug("cores is %u (> %d), ignored",
 					val, numproc);
 				continue;
 			}
-- 
GitLab