Removed old debug method

This commit is contained in:
obscuren 2014-08-14 10:52:13 +02:00
parent 95ba340d07
commit 14e4f1283c
1 changed files with 0 additions and 21 deletions

View File

@ -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
function postData(data, cb) {
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;
}