From 2ab7dac243678382c797476afc89f8b50ba8f0b1 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sun, 23 Jun 2013 17:03:59 +1000 Subject: [PATCH] Demote the invalid nonce warning to log info. --- cgminer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cgminer.c b/cgminer.c index 22dfad55..007501c9 100644 --- a/cgminer.c +++ b/cgminer.c @@ -5709,8 +5709,8 @@ bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce) diff1targ = opt_scrypt ? 0x0000ffffUL : 0; if (be32toh(hash2_32[7]) > diff1targ) { - applog(LOG_WARNING, "%s%d: invalid nonce - HW error", - thr->cgpu->drv->name, thr->cgpu->device_id); + applog(LOG_INFO, "%s%d: invalid nonce - HW error", + thr->cgpu->drv->name, thr->cgpu->device_id); inc_hw_errors(thr); ret = false;