diff --git a/src/AutoPilotPlugins/Common/ESP8266Component.qml b/src/AutoPilotPlugins/Common/ESP8266Component.qml index e13a137b1ef7ddbfbc4f2bbc6e3a7dafc7ef5ce7..d239894ca53fcb9d6ad066f3af28686c69307c07 100644 --- a/src/AutoPilotPlugins/Common/ESP8266Component.qml +++ b/src/AutoPilotPlugins/Common/ESP8266Component.qml @@ -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))