From 462724f82da25beed9a98bfc4401bd7c02890dd7 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 11 Apr 2002 01:41:04 +0000 Subject: [PATCH] Log a stack trace per Walter's suggestion. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1231 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../com/threerings/presents/client/InvocationDirector.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/com/threerings/presents/client/InvocationDirector.java b/src/java/com/threerings/presents/client/InvocationDirector.java index 15a86a448..5313aa720 100644 --- a/src/java/com/threerings/presents/client/InvocationDirector.java +++ b/src/java/com/threerings/presents/client/InvocationDirector.java @@ -1,5 +1,5 @@ // -// $Id: InvocationDirector.java,v 1.18 2002/04/10 06:08:59 mdb Exp $ +// $Id: InvocationDirector.java,v 1.19 2002/04/11 01:41:04 mdb Exp $ package com.threerings.presents.client; @@ -268,8 +268,8 @@ public class InvocationDirector rspmeth.invoke(receiver, nargs); } catch (Exception e) { Log.warning("Error invoking receiver method " + - "[receiver=" + receiver + ", method=" + rspmeth + - ", error=" + e + "]."); + "[receiver=" + receiver + ", method=" + rspmeth + "]."); + Log.logStackTrace(e); } }