Report the caller rather than their oid for failed service requests.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1666 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: InvocationManager.java,v 1.12 2002/08/14 19:07:56 mdb Exp $
|
// $Id: InvocationManager.java,v 1.13 2002/09/06 01:49:23 mdb Exp $
|
||||||
|
|
||||||
package com.threerings.presents.server;
|
package com.threerings.presents.server;
|
||||||
|
|
||||||
@@ -212,7 +212,7 @@ public class InvocationManager
|
|||||||
} else {
|
} else {
|
||||||
Log.warning("Service request failed but we've got no " +
|
Log.warning("Service request failed but we've got no " +
|
||||||
"listener to inform of the failure " +
|
"listener to inform of the failure " +
|
||||||
"[clientOid=" + clientOid + ", code=" + invCode +
|
"[caller=" + source.who() + ", code=" + invCode +
|
||||||
", dispatcher=" + disp + ", methodId=" + methodId +
|
", dispatcher=" + disp + ", methodId=" + methodId +
|
||||||
", args=" + StringUtil.toString(args) +
|
", args=" + StringUtil.toString(args) +
|
||||||
", error=" + ie + "].");
|
", error=" + ie + "].");
|
||||||
@@ -220,7 +220,7 @@ public class InvocationManager
|
|||||||
|
|
||||||
} catch (Throwable t) {
|
} catch (Throwable t) {
|
||||||
Log.warning("Dispatcher choked [disp=" + disp +
|
Log.warning("Dispatcher choked [disp=" + disp +
|
||||||
", methId=" + methodId +
|
", caller=" + source.who() + ", methId=" + methodId +
|
||||||
", args=" + StringUtil.toString(args) + "].");
|
", args=" + StringUtil.toString(args) + "].");
|
||||||
Log.logStackTrace(t);
|
Log.logStackTrace(t);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user