Issue #435 adjust debug log message

This commit is contained in:
Jan Bartel 2016-03-24 10:55:52 +11:00
parent 1c07172635
commit ede4c3a711
1 changed files with 1 additions and 1 deletions

View File

@ -630,7 +630,7 @@ public abstract class AbstractSessionManager extends ContainerLifeCycle implemen
if (__log.isDebugEnabled()) if (__log.isDebugEnabled())
{ {
if (_dftMaxIdleSecs <= 0) if (_dftMaxIdleSecs <= 0)
__log.debug("Sessions created by this manager are immortal (default maxInactiveInterval={})"+_dftMaxIdleSecs); __log.debug("Sessions created by this manager are immortal (default maxInactiveInterval={})",_dftMaxIdleSecs);
else else
__log.debug("SessionManager default maxInactiveInterval={}", _dftMaxIdleSecs); __log.debug("SessionManager default maxInactiveInterval={}", _dftMaxIdleSecs);
} }