From 3f026201937a4de778a708b4574c7b104aaa2fa0 Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Tue, 9 May 2017 16:09:41 +0200 Subject: [PATCH] feat(app): log received singleton app messages --- linphone-desktop/src/app/App.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/linphone-desktop/src/app/App.cpp b/linphone-desktop/src/app/App.cpp index 1e1ae3cea..be9924c39 100644 --- a/linphone-desktop/src/app/App.cpp +++ b/linphone-desktop/src/app/App.cpp @@ -136,6 +136,8 @@ void App::initContentApp () { QObject::connect( this, &App::receivedMessage, this, [this](int, QByteArray message) { + qInfo() << QStringLiteral("Received message from other application: `%1`.").arg(QString(message)); + if (message == "show") App::smartShowWindow(getMainWindow()); }