Log a stack trace if we catch an error invoking an invocation response

handler.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@459 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-10-12 20:26:00 +00:00
parent 0ab1638611
commit eb3bc62083
@@ -1,5 +1,5 @@
// //
// $Id: InvocationDirector.java,v 1.14 2001/10/12 00:03:03 mdb Exp $ // $Id: InvocationDirector.java,v 1.15 2001/10/12 20:26:00 mdb Exp $
package com.threerings.presents.client; package com.threerings.presents.client;
@@ -195,8 +195,8 @@ public class InvocationDirector
rspmeth.invoke(rsptarg, rargs); rspmeth.invoke(rsptarg, rargs);
} catch (Exception e) { } catch (Exception e) {
Log.warning("Error invoking response target method " + Log.warning("Error invoking response target method " +
"[target=" + rsptarg + ", method=" + rspmeth + "[target=" + rsptarg + ", method=" + rspmeth + "].");
", error=" + e + "]."); Log.logStackTrace(e);
} }
} }