Browse Source

Reduce HTTP request failure log level to DEBUG since it often occurs probing stratum pools

Luke Dashjr 11 years ago
parent
commit
12bc335606
1 changed files with 1 additions and 1 deletions
  1. 1 1
      util.c

+ 1 - 1
util.c

@@ -555,7 +555,7 @@ json_t *json_rpc_call_completed(CURL *curl, int rc, bool probe, int *rolltime, v
 	bool probing = probe && !pool->probed;
 
 	if (rc) {
-		applog(LOG_INFO, "HTTP request failed: %s", state->curl_err_str);
+		applog(LOG_DEBUG, "HTTP request failed: %s", state->curl_err_str);
 		goto err_out;
 	}