summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/fbgui.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fbgui.cpp b/src/fbgui.cpp
index c956588..2618ebf 100644
--- a/src/fbgui.cpp
+++ b/src/fbgui.cpp
@@ -143,6 +143,9 @@ void fbgui::loadURL(){
QNetworkRequest req(baseURL);
_webView->load(req, QNetworkAccessManager::PostOperation, postData);
}
+ // disconnect _watcher, his job is done
+ qxtLog->debug() << "[watcher] see you soon!";
+ _watcher->disconnect(this);
}
//-------------------------------------------------------------------------------------------
bool fbgui::checkHost() const
@@ -159,6 +162,7 @@ bool fbgui::checkHost() const
}
//-------------------------------------------------------------------------------------------
QByteArray fbgui::generatePOSTData(){
+ qxtLog->debug() << "[gui] Generating POST data...";
// hash testing
SysInfo si;
QByteArray data(si.getInfo("mac").toUtf8() + "|" + si.getInfo("ip").toUtf8());