1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-03-09 12:11:02 +00:00

Drop json stratum auth failed message log level to verbose.

This commit is contained in:
Con Kolivas 2013-11-22 10:37:44 +11:00 committed by Noel Maersk
parent 39b7bc26cb
commit 7d2cee3066

2
util.c

@ -1837,7 +1837,7 @@ bool auth_stratum(struct pool *pool)
ss = json_dumps(err_val, JSON_INDENT(3)); ss = json_dumps(err_val, JSON_INDENT(3));
else else
ss = strdup("(unknown reason)"); ss = strdup("(unknown reason)");
applog(LOG_WARNING, "pool %d JSON stratum auth failed: %s", pool->pool_no, ss); applog(LOG_INFO, "pool %d JSON stratum auth failed: %s", pool->pool_no, ss);
free(ss); free(ss);
goto out; goto out;