Clients come and go at the craziest of times. No need to worry about it.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3046 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2004-07-03 07:19:46 +00:00
parent 90e5231bae
commit e57580626e
@@ -1,5 +1,5 @@
//
// $Id: InvocationManager.java,v 1.20 2004/02/25 14:45:16 mdb Exp $
// $Id: InvocationManager.java,v 1.21 2004/07/03 07:19:46 mdb Exp $
package com.threerings.presents.server;
@@ -182,10 +182,10 @@ public class InvocationManager
// make sure the client is still around
ClientObject source = (ClientObject)_omgr.getObject(clientOid);
if (source == null) {
Log.warning("Client no longer around for invocation " +
"request [clientOid=" + clientOid +
", code=" + invCode + ", methId=" + methodId +
", args=" + StringUtil.toString(args) + "].");
Log.info("Client no longer around for invocation " +
"request [clientOid=" + clientOid +
", code=" + invCode + ", methId=" + methodId +
", args=" + StringUtil.toString(args) + "].");
return;
}