Removed old debug method
This commit is contained in:
parent
95ba340d07
commit
14e4f1283c
@ -1,18 +1,3 @@
|
|||||||
function debug(/**/) {
|
|
||||||
var args = arguments;
|
|
||||||
var msg = ""
|
|
||||||
for(var i = 0; i < args.length; i++){
|
|
||||||
if(typeof args[i] === "object") {
|
|
||||||
msg += " " + JSON.stringify(args[i])
|
|
||||||
} else {
|
|
||||||
msg += " " + args[i]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
postData({call:"debug", args:[msg]})
|
|
||||||
document.getElementById("debug").innerHTML += "<br>" + msg
|
|
||||||
}
|
|
||||||
|
|
||||||
// Helper function for generating pseudo callbacks and sending data to the QML part of the application
|
// Helper function for generating pseudo callbacks and sending data to the QML part of the application
|
||||||
function postData(data, cb) {
|
function postData(data, cb) {
|
||||||
data._seed = Math.floor(Math.random() * 1000000)
|
data._seed = Math.floor(Math.random() * 1000000)
|
||||||
@ -50,9 +35,3 @@ navigator.qt.onmessage = function(ev) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
window.onerror = function(message, file, lineNumber, column, errorObj) {
|
|
||||||
debug(file, message, lineNumber+":"+column, errorObj);
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user