You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
window.console.error("Exception thrown during "+callbackName+" callback: "+e.toString()+"\n"+e.stack);// Very irritatingly, qunit doesn't report failure results until all async callbacks return, which doesn't always happen when there's an exception
94
+
console.log("Exception thrown during "+callbackName+" callback: "+e.toString()+"\n"+e.stack);// Very irritatingly, qunit doesn't report failure results until all async callbacks return, which doesn't always happen when there's an exception
107
95
assert.ok(false,"Exception thrown during "+callbackName+" callback: "+e.toString()+"\n"+e.stack);
108
96
}
109
97
};
@@ -114,7 +102,7 @@ var PlayFabApiTests = {
114
102
try{
115
103
Callback();
116
104
}catch(e){
117
-
window.console.error("Exception thrown during "+callbackName+" callback: "+e.toString()+"\n"+e.stack);// Very irritatingly, qunit doesn't report failure results until all async callbacks return, which doesn't always happen when there's an exception
105
+
console.log("Exception thrown during "+callbackName+" callback: "+e.toString()+"\n"+e.stack);// Very irritatingly, qunit doesn't report failure results until all async callbacks return, which doesn't always happen when there's an exception
118
106
assert.ok(false,"Exception thrown during "+callbackName+" callback: "+e.toString()+"\n"+e.stack);
0 commit comments