Browse Source

Shorten stale share messages slightly.

nfactor-troky
Con Kolivas 13 years ago
parent
commit
b015348df4
  1. 6
      cgminer.c

6
cgminer.c

@ -2140,13 +2140,13 @@ static void *submit_work_thread(void *userdata)
if (stale_work(work, true)) { if (stale_work(work, true)) {
if (pool->submit_old) if (pool->submit_old)
applog(LOG_NOTICE, "Stale share detected, submitting as pool %d requested", applog(LOG_NOTICE, "Stale share, submitting as pool %d requested",
pool->pool_no); pool->pool_no);
else if (opt_submit_stale) else if (opt_submit_stale)
applog(LOG_NOTICE, "Stale share detected from pool %d, submitting as user requested", applog(LOG_NOTICE, "Stale share from pool %d, submitting as user requested",
pool->pool_no); pool->pool_no);
else { else {
applog(LOG_NOTICE, "Stale share detected from pool %d, discarding", applog(LOG_NOTICE, "Stale share from pool %d, discarding",
pool->pool_no); pool->pool_no);
sharelog("discard", work); sharelog("discard", work);
total_stale++; total_stale++;

Loading…
Cancel
Save