1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-19 19:21:00 +00:00

core: use opt_incognito in a few more applog() places.

This commit is contained in:
Noel Maersk 2014-02-28 22:13:42 +02:00
parent 888fab437f
commit 0d562ffbf5

View File

@ -2458,7 +2458,8 @@ share_result(json_t *val, json_t *res, json_t *err, const struct work *work,
* This will only happen with the work returned from a
* longpoll */
if (unlikely(pool->state == POOL_REJECTING)) {
applog(LOG_WARNING, "Rejecting %s now accepting shares, re-enabling!", pool->poolname);
applog(LOG_WARNING, "Rejecting %s now accepting shares, re-enabling!",
opt_incognito ? "<incognito>" : pool->poolname);
enable_pool(pool);
switch_pools(NULL);
}
@ -2485,7 +2486,7 @@ share_result(json_t *val, json_t *res, json_t *err, const struct work *work,
strcpy(reason, "");
if (total_pools > 1)
snprintf(where, sizeof(where), "%s", work->pool->poolname);
snprintf(where, sizeof(where), "%s", opt_incognito ? "<incognito>" : work->pool->poolname);
else
strcpy(where, "");
@ -2528,7 +2529,8 @@ share_result(json_t *val, json_t *res, json_t *err, const struct work *work,
if (pool->seq_rejects > utility * 3) {
applog(LOG_WARNING, "%s rejected %d sequential shares, disabling!",
pool->poolname, pool->seq_rejects);
opt_incognito ? "<incognito>" : pool->poolname,
pool->seq_rejects);
reject_pool(pool);
if (pool == current_pool())
switch_pools(NULL);