Description
Shutdown method provide incomplete trace information because second variable is missing for second {} in LOG.trace(...)
/**
- shut down the task
* - @throws InterruptedException
*/
public void shutdown(long timeout) throws InterruptedException {
LOG.trace("Shutdown timeout: {} task: {}", task);
Should be changed to:
LOG.trace("Shutdown timeout: {} task: {}", timeout,task);