From: Alan T. DeKok Date: Fri, 27 May 2022 19:48:18 +0000 (-0400) Subject: print data types just to be helpful X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c0ed2038252be19746b1a7e2ee44d49c2ed4a4c;p=thirdparty%2Ffreeradius-server.git print data types just to be helpful --- diff --git a/src/lib/unlang/xlat_tokenize.c b/src/lib/unlang/xlat_tokenize.c index ab3f810937a..a481c1d4575 100644 --- a/src/lib/unlang/xlat_tokenize.c +++ b/src/lib/unlang/xlat_tokenize.c @@ -1114,6 +1114,8 @@ static void _xlat_debug(xlat_exp_head_t const *head, int depth) } INFO_INDENT("}"); } + } else if (tmpl_is_data(node->vpt)) { + INFO_INDENT("tmpl (%s) type %s", node->fmt, fr_type_to_str(tmpl_value_type(node->vpt))); } else { INFO_INDENT("tmpl (%s)", node->fmt); }