From: Alan T. DeKok Date: Thu, 11 Feb 2010 09:33:19 +0000 (+0100) Subject: Add more information to warning message X-Git-Tag: release_2_1_9~86 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62f94d59356167656f7c3764cd283d4d2f118068;p=thirdparty%2Ffreeradius-server.git Add more information to warning message Component && module, if a child thread is stuck for a long time. --- diff --git a/src/main/event.c b/src/main/event.c index 069b785482d..a20f62902a1 100644 --- a/src/main/event.c +++ b/src/main/event.c @@ -492,8 +492,8 @@ static void wait_for_child_to_die(void *ctx) */ if (request->delay < (USEC * 60 * 5)) { request->delay += (request->delay >> 1); - radlog(L_INFO, "WARNING: Child is hung for request %d.", - request->number); + radlog(L_INFO, "WARNING: Child is hung for request %d in component %s module %s.", + request->number, request->component, request->module); } else { RDEBUG2("Child is still stuck for request %d", request->number);