diff --git a/lib/sendf.c b/lib/sendf.c index c4addb527116bd469d0b1c696aaa47795795f52e..77c4cf333cdd5080d1b2624768d9b97f54443632 100644 --- a/lib/sendf.c +++ b/lib/sendf.c @@ -154,8 +154,9 @@ void Curl_failf(struct SessionHandle *data, const char *fmt, ...) vsnprintf(data->set.errorbuffer, CURL_ERROR_SIZE, fmt, ap); data->state.errorbuf = TRUE; /* wrote error string */ - Curl_debug(data, CURLINFO_TEXT, data->set.errorbuffer, - strlen(data->set.errorbuffer)); + if(data->set.verbose) + Curl_debug(data, CURLINFO_TEXT, data->set.errorbuffer, + strlen(data->set.errorbuffer)); } va_end(ap); }