feat(app): log received singleton app messages

This commit is contained in:
Ronan Abhamon 2017-05-09 16:09:41 +02:00
parent 7635fc1ee4
commit 3f02620193

View file

@ -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());
}