From: Alan T. DeKok Date: Wed, 16 Nov 2022 11:42:24 +0000 (-0500) Subject: better error message X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e487f2c3ffdcad2d95fc6e5b2f254db9367609d4;p=thirdparty%2Ffreeradius-server.git better error message --- diff --git a/src/lib/unlang/edit.c b/src/lib/unlang/edit.c index 239bb8cc720..953ae6f35c1 100644 --- a/src/lib/unlang/edit.c +++ b/src/lib/unlang/edit.c @@ -236,7 +236,7 @@ static int apply_edits_to_list(request_t *request, unlang_frame_state_edit_t *st */ token = fr_pair_list_afrom_str(state, da, box->vb_strvalue, box->length, children); if (token == T_INVALID) { - RPEDEBUG("Failed parsing string as attribute list"); + RPEDEBUG("Failed parsing string '%pV' as attribute list", box); return -1; }