Fixed logging statement.

This commit is contained in:
Simone Bordet 2015-03-23 22:27:00 +01:00
parent 85999058e0
commit 517b575c7f
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ public abstract class SelectorManager extends AbstractLifeCycle implements Dumpa
if (isRunning())
LOG.warn("Exception while notifying connection " + connection, x);
else
LOG.debug("Exception while notifying connection {}",connection, x);
LOG.debug("Exception while notifying connection " + connection, x);
}
}