1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-03-13 06:01:03 +00:00

Change message about broken nonce range support to verbose level instead of debug.

This commit is contained in:
Con Kolivas 2012-07-05 22:42:04 +10:00
parent 86ba7d79df
commit afc6ae58a5

View File

@ -398,7 +398,7 @@ static uint64_t bitforce_get_result(struct thr_info *thr, struct work *work)
#endif
if (unlikely(bitforce->nonce_range && (nonce >= work->blk.nonce ||
(work->blk.nonce > 0 && nonce < work->blk.nonce - bitforce->nonces - 1)))) {
applog(LOG_DEBUG, "BFL%i: Disabling broken nonce range support", bitforce->device_id);
applog(LOG_INFO, "BFL%i: Disabling broken nonce range support", bitforce->device_id);
bitforce->nonce_range = false;
work->blk.nonce = 0xffffffff;
}