4
0
mirror of https://github.com/apache/cordova-android.git synced 2025-04-03 13:28:06 +08:00

Adding a console.log statement to debug errors in callback

This commit is contained in:
Joe Bowser 2010-10-25 15:01:17 -07:00
parent f63b8140af
commit 8c624c7f22

@ -579,6 +579,8 @@ PhoneGap.JSCallback = function() {
var t = eval(msg);
}
catch (e) {
// If we're getting an error here, seeing the message will help in debugging
console.log("Message from Server: " + msg");
console.log("JSCallback Error: "+e);
}
}, 1);