[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting ...
Ron Sigal
ron_sigal at yahoo.com
Fri Dec 29 01:31:31 EST 2006
User: rsigal
Date: 06/12/29 01:31:31
Modified: src/main/org/jboss/remoting Tag: remoting_2_x
ServerInvoker.java
Log:
JBREM-650: Remove some log statements accidentally commited.
Revision Changes Path
No revision
No revision
1.52.2.7 +2 -10 JBossRemoting/src/main/org/jboss/remoting/ServerInvoker.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ServerInvoker.java
===================================================================
RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/ServerInvoker.java,v
retrieving revision 1.52.2.6
retrieving revision 1.52.2.7
diff -u -b -r1.52.2.6 -r1.52.2.7
--- ServerInvoker.java 19 Dec 2006 06:00:28 -0000 1.52.2.6
+++ ServerInvoker.java 29 Dec 2006 06:31:31 -0000 1.52.2.7
@@ -58,7 +58,7 @@
*
* @author <a href="mailto:jhaynie at vocalocity.net">Jeff Haynie</a>
* @author <a href="mailto:tom.elrod at jboss.com">Tom Elrod</a>
- * @version $Revision: 1.52.2.6 $
+ * @version $Revision: 1.52.2.7 $
*/
public abstract class ServerInvoker extends AbstractInvoker implements ServerInvokerMBean
{
@@ -1025,13 +1025,6 @@
}
else
{
- log.error(this + ": not started");
- log.error("request: " + invocation.getParameter());
- if (invocation.getParameter() instanceof InternalInvocation)
- {
- InternalInvocation ii = (InternalInvocation) invocation.getParameter();
- log.error("internal invocation: " + ii.getMethodName());
- }
throw new InvalidStateException("Can not process invocation request since is not in started state.");
}
}
@@ -1412,7 +1405,7 @@
public void start() throws IOException
{
started = true;
- log.debug(this + ": Invoker started for locator: " + getLocator());
+ log.debug("Invoker started for locator: " + getLocator());
}
/**
@@ -1430,7 +1423,6 @@
*/
public void stop()
{
- log.info(this + ": stopping");
started = false;
Iterator it = callbackHandlers.values().iterator();
More information about the jboss-cvs-commits
mailing list