From: Arran Cudbard-Bell Date: Wed, 1 May 2024 00:33:57 +0000 (-0400) Subject: Print errors when attribute parsing fails in rlm_python X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=31b69bb82272bc5eb0ccb82a2d3a021bb22761f0;p=thirdparty%2Ffreeradius-server.git Print errors when attribute parsing fails in rlm_python --- diff --git a/src/modules/rlm_python/rlm_python.c b/src/modules/rlm_python/rlm_python.c index 85cc0306597..5dad2371596 100644 --- a/src/modules/rlm_python/rlm_python.c +++ b/src/modules/rlm_python/rlm_python.c @@ -340,7 +340,7 @@ static void mod_vptuple(TALLOC_CTX *ctx, module_ctx_t const *mctx, request_t *re .list_def = request_attr_reply } }) <= 0) { - ERROR("%s - Failed to find attribute %s.%s", funcname, list_name, s1); + PERROR("%s - Failed to find attribute %s.%s", funcname, list_name, s1); continue; }