good morning!!!!

Skip to content
Snippets Groups Projects
Commit 14e4f128 authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Removed old debug method

parent 95ba340d
No related branches found
No related tags found
No related merge requests found
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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment