From d56ba51b493490bf730be2387a069cfbff72090f Mon Sep 17 00:00:00 2001 From: Nathan Curtis Date: Thu, 30 Apr 2009 18:44:11 +0000 Subject: [PATCH] I appear to have a hiesenbug, so this didn't actually end up testing this... but we should be using the new varargs fanciness, including a stack trace from the error. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5762 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/util/MethodQueue.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/as/com/threerings/util/MethodQueue.as b/src/as/com/threerings/util/MethodQueue.as index 25557c64e..f168ab99d 100644 --- a/src/as/com/threerings/util/MethodQueue.as +++ b/src/as/com/threerings/util/MethodQueue.as @@ -57,8 +57,8 @@ public class MethodQueue fn.apply(null, args); } catch (e :Error) { - Log.getLog(MethodQueue).warning("Error calling deferred method " + - "[e=" + e + ", fn=" + fn + ", args=" + args + "]."); + Log.getLog(MethodQueue).warning( + "Error calling deferred method", "fn", fn, "args", args, e); } }