diff --git a/src/slurmd/slurmd/get_mach_stat.c b/src/slurmd/slurmd/get_mach_stat.c index 762d87dbd56bfb71ce38afb776e2bfab29498ed8..7303cfab67c2dd94ac0bb814b7fa9de187dbf1b7 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; }