From 03fab3f43864e7d95fcee7a070fdc3b74cb67439 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sat, 28 Apr 2012 00:16:34 +1000 Subject: [PATCH] Remove thread id display from rejected shares as well. --- cgminer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cgminer.c b/cgminer.c index d5de1c99..847adc7e 100644 --- a/cgminer.c +++ b/cgminer.c @@ -1704,8 +1704,8 @@ static bool submit_upstream_work(const struct work *work) } else strcpy(reason, ""); - applog(LOG_NOTICE, "Rejected %s %s %d thread %d%s%s", - hashshow, cgpu->api->name, cgpu->device_id, thr_id, where, reason); + applog(LOG_NOTICE, "Rejected %s %s %d %s%s", + hashshow, cgpu->api->name, cgpu->device_id, where, reason); sharelog(disposition, work); } }