Author: ron.sigal(a)jboss.com
Date: 2009-05-06 00:26:49 -0400 (Wed, 06 May 2009)
New Revision: 5140
Modified:
remoting2/branches/2.2.2-SP11_JBREM-1112/src/main/org/jboss/remoting/LeasePinger.java
Log:
JBREM-1112 (and others to be named): Added a logging statement.
Modified:
remoting2/branches/2.2.2-SP11_JBREM-1112/src/main/org/jboss/remoting/LeasePinger.java
===================================================================
---
remoting2/branches/2.2.2-SP11_JBREM-1112/src/main/org/jboss/remoting/LeasePinger.java 2009-05-06
04:26:24 UTC (rev 5139)
+++
remoting2/branches/2.2.2-SP11_JBREM-1112/src/main/org/jboss/remoting/LeasePinger.java 2009-05-06
04:26:49 UTC (rev 5140)
@@ -81,6 +81,7 @@
Iterator it = clients.values().iterator();
{
Client client = (Client) it.next();
+ log.debug(this + " calling " + client +
".notifyAndDisconnect()");
client.notifyAndDisconnect();
it.remove();
}
@@ -320,8 +321,8 @@
}
}
- log.trace(this + " sending ping to server. Currently managing lease
" +
- "for following clients:\n" + sb.toString());
+ log.debug(this + " sending ping to server. Currently managing lease
" +
+ "for following clients:\n" + sb.toString());
}
Map clientsClone = new ConcurrentHashMap(clientSessionIds);
Show replies by date