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
This commit is contained in:
Nathan Curtis
2009-04-30 18:44:11 +00:00
parent 0e2f26df73
commit d56ba51b49
+2 -2
View File
@@ -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);
}
}