From ef63ea3151c62306e1180208990b0aa864c8231c Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Fri, 5 Oct 2012 12:45:07 +1000 Subject: [PATCH] Drop stratum connect failed message to verbose level only since it's a regular probing message. --- util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.c b/util.c index 17e24280..0fd6b54b 100644 --- a/util.c +++ b/util.c @@ -1245,7 +1245,7 @@ bool initiate_stratum(struct pool *pool) } curl_easy_setopt(curl, CURLOPT_CONNECT_ONLY, 1); if (curl_easy_perform(curl)) { - applog(LOG_ERR, "Stratum connect failed: %s", curl_err_str); + applog(LOG_INFO, "Stratum connect failed to pool %d: %s", pool->pool_no, curl_err_str); goto out; } curl_easy_getinfo(curl, CURLINFO_LASTSOCKET, (long *)&pool->sock);