From: Daniel KouĊ™il Date: Tue, 15 Mar 2005 17:51:06 +0000 (+0000) Subject: add also jobid to debugging output X-Git-Tag: glite-security-proxyrenewal_R_1_0_10~23 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=c84898c48abb3e60220079533fd49949ed8dd7c3;p=jra1mw.git add also jobid to debugging output --- diff --git a/org.glite.security.proxyrenewal/src/renewd.c b/org.glite.security.proxyrenewal/src/renewd.c index 29e4dbb..9155fb3 100644 --- a/org.glite.security.proxyrenewal/src/renewd.c +++ b/org.glite.security.proxyrenewal/src/renewd.c @@ -139,9 +139,10 @@ proto(int sock) goto end; } - edg_wlpr_Log(LOG_INFO, "Received command code %d for proxy %s", + edg_wlpr_Log(LOG_INFO, "Received command code %d for proxy %s and jobid %s", request.command, - request.proxy_filename ? request.proxy_filename : "(unspecified)"); + request.proxy_filename ? request.proxy_filename : "(unspecified)", + request.jobid ? request.jobid : "(unspecified)"); command->handler(&request, &response);