diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-10-24 11:12:34 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-10-24 11:12:34 +0200 |
commit | 2b042574917aeff4d366dec23a7d007913cbe755 (patch) | |
tree | 8777991c5556529291dbbfdf912f989a1030ebe9 /lib | |
parent | e9bbe425d4871f73e83622ff4c057c5d60da82a5 (diff) |
pipelining: only output "is not blacklisted" in debug builds
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pipeline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pipeline.c b/lib/pipeline.c index 270df4192..346f32b55 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; } |