Avoid logging spurious warnings about ignored listeners that weren't

really ignored, but just never got responded to due to a bigger problem.
(The bigger problems are already logged.)


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3810 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-01-19 01:40:05 +00:00
parent 60c204a93a
commit 78f7b7f3e0
@@ -280,6 +280,12 @@ public class InvocationManager
", caller=" + source.who() + ", methId=" + methodId +
", args=" + StringUtil.toString(args) + "].");
Log.logStackTrace(t);
// avoid logging an error when the listener notices that it's
// been ignored.
if (rlist != null) {
rlist.setNoResponse();
}
}
}