Commit 87328163 authored by dogmaphobic's avatar dogmaphobic

Remove debug output

parent 275ea54a
...@@ -71,12 +71,10 @@ QGCView { ...@@ -71,12 +71,10 @@ QGCView {
url = url + "?r=1" url = url + "?r=1"
stResetCounters = false stResetCounters = false
} }
console.log(url)
req.open("GET", url); req.open("GET", url);
req.onreadystatechange = function() { req.onreadystatechange = function() {
stStatus = req.readyState; stStatus = req.readyState;
if (stStatus === XMLHttpRequest.DONE) { if (stStatus === XMLHttpRequest.DONE) {
console.log(req.responseText)
var objectArray = JSON.parse(req.responseText); var objectArray = JSON.parse(req.responseText);
if (objectArray.errors !== undefined) { if (objectArray.errors !== undefined) {
console.log(qsTr("Error fetching WiFi Bridge Status: %1").arg(objectArray.errors[0].message)) 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