Let's print a stack trace when there's an error in the completeCallback,

it could be a ways inside it and we want to help people debug.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4970 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2008-03-14 23:08:21 +00:00
parent bb23a5caf1
commit 95e27a7943
+2 -1
View File
@@ -244,7 +244,8 @@ public class MultiLoader
try {
_complete(thisResult);
} catch (err :Error) {
trace("MultiLoader: Could not call completeCallback: " + err);
trace("MultiLoader: Error calling completeCallback [result=" + thisResult + "].");
trace("Cause: " + err.getStackTrace());
}
}