From 6f2d9898009d524aeab63f566215e40206f2bd60 Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Sun, 10 May 2020 10:29:30 +0200 Subject: [PATCH] Format debug message [ci skip] --- linphone-app/src/components/notifier/Notifier.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/linphone-app/src/components/notifier/Notifier.cpp b/linphone-app/src/components/notifier/Notifier.cpp index 9a681f1f2..5720b91ba 100644 --- a/linphone-app/src/components/notifier/Notifier.cpp +++ b/linphone-app/src/components/notifier/Notifier.cpp @@ -168,7 +168,9 @@ QObject *Notifier::createNotification (Notifier::NotificationType type, QVariant QObject::connect(wrapperItem, &QObject::destroyed, previousWrapper, &QObject::deleteLater); } previousWrapper = wrapperItem; // The last one is used as a point of start when deleting and openning - qInfo() << "Screen ["<geometry() << screen->availableGeometry() << screen->virtualGeometry() << screen->availableVirtualGeometry() << "Choose:"<geometry(); + qInfo() << QString("Screen [")+QString::number(i)+"] (hdpi, Geometry, Available, Virtual, AvailableGeometry) :" + << screen->devicePixelRatio() << screen->geometry() << screen->availableGeometry() << screen->virtualGeometry() << screen->availableVirtualGeometry() + << "Choose:" << subWindow->geometry(); view->show(); } qInfo() << QStringLiteral("Create notifications:") << wrapperItem;