Commit 87328163 authored by dogmaphobic's avatar dogmaphobic

Remove debug output

parent 275ea54a
......@@ -71,12 +71,10 @@ QGCView {
url = url + "?r=1"
stResetCounters = false
}
console.log(url)
req.open("GET", url);
req.onreadystatechange = function() {
stStatus = req.readyState;
if (stStatus === XMLHttpRequest.DONE) {
console.log(req.responseText)
var objectArray = JSON.parse(req.responseText);
if (objectArray.errors !== undefined) {
console.log(qsTr("Error fetching WiFi Bridge Status: %1").arg(objectArray.errors[0].message))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment