]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
debug messages aren't errors
authorAlan T. DeKok <aland@freeradius.org>
Wed, 27 Sep 2017 20:39:05 +0000 (16:39 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Wed, 27 Sep 2017 20:39:05 +0000 (16:39 -0400)
src/modules/rlm_rest/rest.c

index c74be124b067edffbc969005fe658dab18b4c809..586400bf15f66dfcb44b1c0a09a9427e345f1421 100644 (file)
@@ -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(&section->timeout_tv));
+       DEBUG3("CONNECT TIMEOUT IS %" PRIu64", REQUEST TIMEOUT IS %" PRIu64,
+              FR_TIMEVAL_TO_MS(&timeout), FR_TIMEVAL_TO_MS(&section->timeout_tv));
        SET_OPTION(CURLOPT_CONNECTTIMEOUT_MS, FR_TIMEVAL_TO_MS(&timeout));
        SET_OPTION(CURLOPT_TIMEOUT_MS, FR_TIMEVAL_TO_MS(&section->timeout_tv));