if (this.computeTime.isEmpty() == false) {
for (String txnName : this.computeTime.keySet()) {
ProfileMeasurement pm = this.computeTime.get(txnName);
if (pm.getInvocations() != 0) {
LOG.debug(String.format("[%02d] - %s COMPUTE TIME: %s", counter, txnName, pm.debug()));
pm.reset();
}
} // FOR
}
LOG.debug("Client Queue Time: " + this.m_voltClient.getQueueTime().debug());
this.m_voltClient.getQueueTime().reset();