Lets not store the whole marshaller and just the class name. Combine log

message.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2837 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Eric Lundberg
2003-10-26 02:44:01 +00:00
parent bcd034d0be
commit fc2cb730b8
@@ -1,5 +1,5 @@
// //
// $Id: InvocationManager.java,v 1.16 2003/10/26 02:33:43 eric Exp $ // $Id: InvocationManager.java,v 1.17 2003/10/26 02:44:01 eric Exp $
package com.threerings.presents.server; package com.threerings.presents.server;
@@ -110,7 +110,8 @@ public class InvocationManager
bootlist.add(marsh); bootlist.add(marsh);
} }
_recentRegServices.put(new Integer(invCode), marsh); _recentRegServices.put(new Integer(invCode),
marsh.getClass().getName());
// Log.info("Registered service [marsh=" + marsh + "]."); // Log.info("Registered service [marsh=" + marsh + "].");
return marsh; return marsh;
@@ -193,8 +194,7 @@ public class InvocationManager
Log.warning("Received invocation request for which we have " + Log.warning("Received invocation request for which we have " +
"no registered dispatcher [code=" + invCode + "no registered dispatcher [code=" + invCode +
", methId=" + methodId + ", methId=" + methodId +
", args=" + StringUtil.toString(args) + "]."); ", args=" + StringUtil.toString(args) + ", marsh= " +
Log.warning("Marsheller for unregistered dispatcher [march=" +
_recentRegServices.get(new Integer(invCode)) + "]."); _recentRegServices.get(new Integer(invCode)) + "].");
return; return;
} }