diff options
author | Saturneric <[email protected]> | 2023-02-11 14:10:09 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2023-02-11 14:10:09 +0000 |
commit | 6a75817c85b0d4a97cea82ad2331736cff9913cf (patch) | |
tree | 261b01c4dc55a28241694a5e292d9fc5c77b6319 /src/ui/thread/ProxyConnectionTestThread.cpp | |
parent | feat: upgrade qt framework to 6.3 (diff) | |
download | GpgFrontend-6a75817c85b0d4a97cea82ad2331736cff9913cf.tar.gz GpgFrontend-6a75817c85b0d4a97cea82ad2331736cff9913cf.zip |
fix: reduce info level logs
Diffstat (limited to 'src/ui/thread/ProxyConnectionTestThread.cpp')
-rw-r--r-- | src/ui/thread/ProxyConnectionTestThread.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/thread/ProxyConnectionTestThread.cpp b/src/ui/thread/ProxyConnectionTestThread.cpp index 068afedf..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()) { - SPDLOG_INFO("no proxy applied"); + SPDLOG_DEBUG("no proxy applied"); } else { - SPDLOG_INFO("proxies list hostname: {}", - proxies_list.front().hostName().toStdString()); + SPDLOG_DEBUG("proxies list hostname: {}", + proxies_list.front().hostName().toStdString()); } - SPDLOG_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; |