make a log message more informative

git-svn-id: svn+ssh://cvs.lpds.sztaki.hu/var/lib/svn/szdg/dcapi/trunk@1006 a7169a2c-3604-0410-bc95-c702d8d87f7a
This commit is contained in:
drotos 2007-01-16 12:54:01 +00:00 committed by Adam Visegradi
parent a6ad21ad2c
commit 16a08a8ba1
1 changed files with 3 additions and 2 deletions

View File

@ -108,9 +108,10 @@ _DC_wu_update_condor_events(DC_Workunit *wu)
}
}
g_array_append_val(wu->condor_events, e);
DC_log(LOG_DEBUG, "Condor event %d %s",
DC_log(LOG_DEBUG, "Condor event %d %s of %p-\"%s\"",
event->eventNumber,
ULogEventNumberNames[event->eventNumber]);
ULogEventNumberNames[event->eventNumber],
wu, wu->data.name);
}
delete event;
i++;