Browse Source

kncasic: Fix logging levels
Also reduce severity of "Communication error" and "timeout" messages

Vitalii Demianets 11 years ago
parent
commit
726f582f77
1 changed files with 4 additions and 4 deletions
  1. 4 4
      driver-kncasic.c

+ 4 - 4
driver-kncasic.c

@@ -435,11 +435,11 @@ static bool knc_detect_one(void *ctx)
 	}
 	}
 
 
 	if (!cores) {
 	if (!cores) {
-		applog(LOG_NOTICE, "no KnCminer cores found");
+		applog(LOG_ERR, "no KnCminer cores found");
 		return false;
 		return false;
 	}
 	}
 
 
-	applog(LOG_ERR, "Found a KnC miner with %d cores", cores);
+	applog(LOG_NOTICE, "Found a KnC miner with %d cores", cores);
 
 
 	knc = calloc(1, sizeof(*knc));
 	knc = calloc(1, sizeof(*knc));
 	if (!knc) {
 	if (!knc) {
@@ -751,7 +751,7 @@ static void knc_process_responses(struct thr_info *thr)
 			if (response_info->type == KNC_SETWORK && !KNC_IS_ERROR(status))
 			if (response_info->type == KNC_SETWORK && !KNC_IS_ERROR(status))
 				status ^= KNC_ACCEPTED;
 				status ^= KNC_ACCEPTED;
 			if (core->die->version != KNC_VERSION_JUPITER && status != 0) {
 			if (core->die->version != KNC_VERSION_JUPITER && status != 0) {
-				applog(LOG_ERR, "%"PRIpreprv"[%d]: Communication error (%x / %d)", proc->proc_repr, core->core, status, i);
+				applog(LOG_INFO, "%"PRIpreprv"[%d]: Communication error (%x / %d)", proc->proc_repr, core->core, status, i);
 				if (status == KNC_ACCEPTED) {
 				if (status == KNC_ACCEPTED) {
 					/* Core refused our work vector. Likely out of sync. Reset it */
 					/* Core refused our work vector. Likely out of sync. Reset it */
 					core->inuse = false;
 					core->inuse = false;
@@ -908,7 +908,7 @@ static int64_t knc_scanwork(struct thr_info *thr)
 			core->hold_work_until = now;
 			core->hold_work_until = now;
 			core->generation = knc->generation;
 			core->generation = knc->generation;
 		} else if (timercmp(&core->timeout, &now, <=) && (core->workslot[0].slot > 0 || core->workslot[1].slot > 0 || core->workslot[2].slot > 0)) {
 		} else if (timercmp(&core->timeout, &now, <=) && (core->workslot[0].slot > 0 || core->workslot[1].slot > 0 || core->workslot[2].slot > 0)) {
-			applog(LOG_ERR, "%"PRIpreprv"[%d] timeout gen=%d/%d", proc->proc_repr, core->core, core->generation, knc->generation);
+			applog(LOG_INFO, "%"PRIpreprv"[%d] timeout gen=%d/%d", proc->proc_repr, core->core, core->generation, knc->generation);
 			clean = true;
 			clean = true;
 		}
 		}
 		if (!knc_core_has_work(core))
 		if (!knc_core_has_work(core))