From: Zdeněk Šustr Date: Mon, 4 Jun 2012 07:21:22 +0000 (+0000) Subject: Include affected JobID wen logging 'really running on a bad branch' (SB #92129) X-Git-Tag: merge_32_head_src~2 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=db0504a49267bb5fbab92cac10b47ef219302130;p=jra1mw.git Include affected JobID wen logging 'really running on a bad branch' (SB #92129) --- diff --git a/org.glite.lb.state-machine/src/process_event.c b/org.glite.lb.state-machine/src/process_event.c index c6b3060..357ebd0 100644 --- a/org.glite.lb.state-machine/src/process_event.c +++ b/org.glite.lb.state-machine/src/process_event.c @@ -609,8 +609,9 @@ static int processEvent_glite(intJobStat *js, edg_wll_Event *e, int ev_seq, int /* consistence check -- should not receive two contradicting ReallyRunning's within single deep resub cycle */ if (fine_res == RET_BADBRANCH) { - syslog(LOG_ERR,"ReallyRunning on bad branch %s", - e->any.source == EDG_WLL_SOURCE_LOG_MONITOR ? e->reallyRunning.wn_seq : e->any.seqcode); + syslog(LOG_ERR,"ReallyRunning on bad branch %s (%s)", + e->any.source == EDG_WLL_SOURCE_LOG_MONITOR ? e->reallyRunning.wn_seq : e->any.seqcode, + e->any.jobId); break; } /* select the branch unless TOOOLD, i.e. before deep resubmission */