if(logMINOR) Logger.minor(this, "Delay times: realtime: local="+nlmDelayRTLocal.currentValue()+" remote = "+nlmDelayRTRemote.currentValue()+
" bulk: local="+nlmDelayBulkLocal.currentValue()+" remote="+nlmDelayBulkRemote.currentValue());
}
public void drawNewLoadManagementDelayTimes(HTMLNode content) {
WaitingForSlots waitingSlots = node.tracker.countRequestsWaitingForSlots();
content.addChild("p").addChild("#", l10n("slotsWaiting", new String[] { "local", "remote" }, new String[] { Integer.toString(waitingSlots.local), Integer.toString(waitingSlots.remote) }));
HTMLNode table = content.addChild("table", "border", "0");
HTMLNode header = table.addChild("tr");
header.addChild("th", l10n("delayTimes"));
header.addChild("th", l10n("localHeader"));