From: Daniel Stenberg Date: Fri, 24 Oct 2014 09:12:34 +0000 (+0200) Subject: pipelining: only output "is not blacklisted" in debug builds X-Git-Tag: curl-7_39_0~97 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2b042574917aeff4d366dec23a7d007913cbe755;p=thirdparty%2Fcurl.git pipelining: only output "is not blacklisted" in debug builds --- diff --git a/lib/pipeline.c b/lib/pipeline.c index 270df4192a..346f32b55e 100644 --- a/lib/pipeline.c +++ b/lib/pipeline.c @@ -272,7 +272,7 @@ bool Curl_pipeline_server_blacklisted(struct SessionHandle *handle, } } - infof(handle, "Server %s is not blacklisted\n", server_name); + DEBUGF(infof(handle, "Server %s is not blacklisted\n", server_name)); } return FALSE; }