Commit 4715ee84c5c6a8643ca18fb78decee0047631fc0

Con Kolivas 2013-11-22T10:37:44

Drop json stratum auth failed message log level to verbose.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/util.c b/util.c
index 4e3d502..0e9670c 100644
--- a/util.c
+++ b/util.c
@@ -1839,7 +1839,7 @@ bool auth_stratum(struct pool *pool)
 			ss = json_dumps(err_val, JSON_INDENT(3));
 		else
 			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);
 
 		goto out;