From: Alan T. DeKok Date: Wed, 27 Sep 2017 20:39:05 +0000 (-0400) Subject: debug messages aren't errors X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7381e04ba0a188554def078a92e9134d64f58f53;p=thirdparty%2Ffreeradius-server.git debug messages aren't errors --- diff --git a/src/modules/rlm_rest/rest.c b/src/modules/rlm_rest/rest.c index c74be124b06..586400bf15f 100644 --- a/src/modules/rlm_rest/rest.c +++ b/src/modules/rlm_rest/rest.c @@ -1745,8 +1745,8 @@ int rest_request_config(rlm_rest_t const *inst, rlm_rest_thread_t *t, rlm_rest_s } timeout = fr_pool_timeout(t->pool); - ERROR("CONNECT TIMEOUT IS %" PRIu64", REQUEST TIMEOUT IS %" PRIu64, - FR_TIMEVAL_TO_MS(&timeout), FR_TIMEVAL_TO_MS(§ion->timeout_tv)); + DEBUG3("CONNECT TIMEOUT IS %" PRIu64", REQUEST TIMEOUT IS %" PRIu64, + FR_TIMEVAL_TO_MS(&timeout), FR_TIMEVAL_TO_MS(§ion->timeout_tv)); SET_OPTION(CURLOPT_CONNECTTIMEOUT_MS, FR_TIMEVAL_TO_MS(&timeout)); SET_OPTION(CURLOPT_TIMEOUT_MS, FR_TIMEVAL_TO_MS(§ion->timeout_tv));