aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/thread/ProxyConnectionTestThread.cpp
diff options
context:
space:
mode:
authorSaturn&Eric <[email protected]>2023-02-25 11:49:54 +0000
committerGitHub <[email protected]>2023-02-25 11:49:54 +0000
commitaf1cd680f2496629026ba27707cef2afd860f5f9 (patch)
tree78e78450893e98b8828cc41010e377c1561e5f34 /src/ui/thread/ProxyConnectionTestThread.cpp
parentfix: improve manual (diff)
parentfeat: use aqt to install qt in ci build (diff)
downloadGpgFrontend-af1cd680f2496629026ba27707cef2afd860f5f9.tar.gz
GpgFrontend-af1cd680f2496629026ba27707cef2afd860f5f9.zip
Merge pull request #91 from saturneric/dev/2.0.10/main
Develop 2.1.0.1
Diffstat (limited to 'src/ui/thread/ProxyConnectionTestThread.cpp')
-rw-r--r--src/ui/thread/ProxyConnectionTestThread.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/thread/ProxyConnectionTestThread.cpp b/src/ui/thread/ProxyConnectionTestThread.cpp
index 062f4774..8b113453 100644
--- a/src/ui/thread/ProxyConnectionTestThread.cpp
+++ b/src/ui/thread/ProxyConnectionTestThread.cpp
@@ -31,13 +31,13 @@ void GpgFrontend::UI::ProxyConnectionTestThread::run() {
auto proxies_list = QNetworkProxyFactory::systemProxyForQuery(npq);
if (proxies_list.isEmpty()) {
- LOG(INFO) << "no proxy applied";
+ SPDLOG_DEBUG("no proxy applied");
} else {
- LOG(INFO) << "proxies list hostname"
- << proxies_list.front().hostName().toStdString();
+ SPDLOG_DEBUG("proxies list hostname: {}",
+ proxies_list.front().hostName().toStdString());
}
- LOG(INFO) << "proxies list size" << proxies_list.size();
+ SPDLOG_DEBUG("proxies list size: {}", proxies_list.size());
auto manager = std::make_unique<QNetworkAccessManager>(nullptr);
QNetworkRequest url_request;