]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
print out values we're parsing
authorAlan T. DeKok <aland@freeradius.org>
Thu, 26 Aug 2021 12:58:29 +0000 (08:58 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 26 Aug 2021 12:58:29 +0000 (08:58 -0400)
src/modules/rlm_ldap/attrmap.c

index 98d914fbd141314f843b1dc10b9e574ab113ecfc..1e5624782dcaf61a2739e115c0dfbe5b1ca0e171 100644 (file)
@@ -110,6 +110,8 @@ int rlm_ldap_map_getvalue(TALLOC_CTX *ctx, VALUE_PAIR **out, REQUEST *request, v
                for (i = 0; i < self->count; i++) {
                        if (!self->values[i]->bv_len) continue;
 
+                       RDEBUG3("Parsing %s = %s", map->lhs->name, self->values[i]->bv_val);
+
                        vp = fr_pair_afrom_da(ctx, map->lhs->tmpl_da);
                        rad_assert(vp);