aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/WaitingDialog.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2023-02-11 14:10:09 +0000
committerSaturneric <[email protected]>2023-02-11 14:10:09 +0000
commit6a75817c85b0d4a97cea82ad2331736cff9913cf (patch)
tree261b01c4dc55a28241694a5e292d9fc5c77b6319 /src/ui/dialog/WaitingDialog.cpp
parentfeat: upgrade qt framework to 6.3 (diff)
downloadGpgFrontend-6a75817c85b0d4a97cea82ad2331736cff9913cf.tar.gz
GpgFrontend-6a75817c85b0d4a97cea82ad2331736cff9913cf.zip
fix: reduce info level logs
Diffstat (limited to '')
-rw-r--r--src/ui/dialog/WaitingDialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/dialog/WaitingDialog.cpp b/src/ui/dialog/WaitingDialog.cpp
index f014ac3d..afdd55b8 100644
--- a/src/ui/dialog/WaitingDialog.cpp
+++ b/src/ui/dialog/WaitingDialog.cpp
@@ -57,8 +57,8 @@ WaitingDialog::WaitingDialog(const QString& title, QWidget* parent)
int screen_width = geo.width();
int screen_height = geo.height();
- SPDLOG_INFO("primary screen available geometry: {} {}", screen_width,
- screen_height);
+ SPDLOG_DEBUG("primary screen available geometry: {} {}", screen_width,
+ screen_height);
auto pos = QPoint((screen_width - QWidget::width()) / 2,
(screen_height - QWidget::height()) / 2);
@@ -67,7 +67,7 @@ WaitingDialog::WaitingDialog(const QString& title, QWidget* parent)
} else {
auto pos = QPoint(parent->x() + (parent->width() - QWidget::width()) / 2,
parent->y() + (parent->height() - QWidget::height()) / 2);
- SPDLOG_INFO("pos: {} {}", pos.x(), pos.y());
+ SPDLOG_DEBUG("pos: {} {}", pos.x(), pos.y());
this->move(pos);
}