]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Improve debugging in interpret.c
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 7 Jun 2021 00:40:35 +0000 (19:40 -0500)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 10 Jun 2021 22:58:30 +0000 (17:58 -0500)
src/lib/unlang/interpret.c

index 4c6bf12e1edbac271f665a8d532a4f091aba22d2..bccac437296fec78d7e19c4e38b0a29dfff59ee5 100644 (file)
@@ -134,7 +134,7 @@ int unlang_interpret_push(request_t *request, unlang_t const *instruction,
        fr_assert(instruction || top_frame);
 
 #ifndef NDEBUG
-       if (DEBUG_ENABLED5) RDEBUG3("unlang_interpret_push called with instruction %s - args %s %s",
+       if (DEBUG_ENABLED5) RDEBUG3("unlang_interpret_push called with instruction type \"%s\" - args %s %s",
                                    instruction ? instruction->debug_name : "<none>",
                                    do_next_sibling ? "UNLANG_NEXT_SIBLING" : "UNLANG_NEXT_STOP",
                                    top_frame ? "UNLANG_TOP_FRAME" : "UNLANG_SUB_FRAME");