String id = iws.getWiId();
String node = iws.getNode();
if ( node == null ) node = "<unassigned>";
String pid = iws.getPid();
if ( pid == null ) pid = "<n/a>";
State state = iws.getState();
long proctime = iws.getMillisProcessing();
long overhead = iws.getMillisOverhead();
System.out.println(String.format(fmt, seq, id, state, overhead, proctime, node, pid));
}