From 26c4be818a34d449534a32ab30e332cc97d70ed9 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Fri, 7 Feb 2014 08:48:40 +1100 Subject: [PATCH] Show device info in noffset nonce share above target message. --- sgminer.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sgminer.c b/sgminer.c index abb82e59..753a3141 100644 --- a/sgminer.c +++ b/sgminer.c @@ -6095,7 +6095,8 @@ bool submit_noffset_nonce(struct thr_info *thr, struct work *work_in, uint32_t n ret = true; update_work_stats(thr, work); if (!fulltest(work->hash, work->target)) { - applog(LOG_INFO, "Share above target"); + applog(LOG_INFO, "%s %d: Share above target", thr->cgpu->drv->name, + thr->cgpu->device_id); goto out; } submit_work_async(work);