From: Andreas Steffen Date: Wed, 14 Mar 2007 07:22:37 +0000 (-0000) Subject: increased control debugging output X-Git-Tag: 4.1.0~73 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d46a73288dc593e204bff7f5bb303bc24671f42d;p=thirdparty%2Fstrongswan.git increased control debugging output --- diff --git a/src/libstrongswan/utils/fetcher.c b/src/libstrongswan/utils/fetcher.c index 30154f8e1f..8d960a8a21 100644 --- a/src/libstrongswan/utils/fetcher.c +++ b/src/libstrongswan/utils/fetcher.c @@ -110,12 +110,12 @@ static chunk_t post(private_fetcher_t *this, const char *request_type, chunk_t r curl_easy_setopt(this->curl, CURLOPT_FAILONERROR, TRUE); curl_easy_setopt(this->curl, CURLOPT_CONNECTTIMEOUT, FETCHER_TIMEOUT); - DBG2("sending http post request to '%s'", this->uri); + DBG1("sending http post request to '%s'...", this->uri); res = curl_easy_perform(this->curl); if (res == CURLE_OK) { - DBG2("received valid http response"); + DBG1("received valid http response"); response = chunk_clone(curl_response); } else