From 69bed52e99122c295b0d0d514abbdb7be8ae0727 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Tue, 6 Mar 2007 19:20:17 +0000 Subject: [PATCH] Was writing an email to query for opinions on this, then decided that this was the right thing to do. Go ahead and log the innards-laden stack trace, we'll be glad when there's a bug in our innards. git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@229 c613c5cb-e716-0410-b11b-feb51c14d237 --- src/as/com/threerings/ezgame/EZGameControl.as | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/as/com/threerings/ezgame/EZGameControl.as b/src/as/com/threerings/ezgame/EZGameControl.as index 5b66e59f..25abbe27 100644 --- a/src/as/com/threerings/ezgame/EZGameControl.as +++ b/src/as/com/threerings/ezgame/EZGameControl.as @@ -585,6 +585,8 @@ public class EZGameControl extends BaseControl return func.apply(null, args); } } catch (err :Error) { + trace(err.getStackTrace()); + trace("--"); throw new Error("Unable to call host code: " + err.message); }