From e57580626e04c2e9edc0981340a2d6c36422897c Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Sat, 3 Jul 2004 07:19:46 +0000 Subject: [PATCH] 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 --- .../threerings/presents/server/InvocationManager.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/java/com/threerings/presents/server/InvocationManager.java b/src/java/com/threerings/presents/server/InvocationManager.java index e2f02dd8f..056a3f8cf 100644 --- a/src/java/com/threerings/presents/server/InvocationManager.java +++ b/src/java/com/threerings/presents/server/InvocationManager.java @@ -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; }