diff --git a/ipc/ipcserver.cpp b/ipc/ipcserver.cpp index f9519a49..55a6e6ab 100644 --- a/ipc/ipcserver.cpp +++ b/ipc/ipcserver.cpp @@ -393,6 +393,8 @@ int IpcServer::installApp(const QString &path) QStringList() << "Start-Process" << path << "-Verb" << "RunAs" << "-Wait"); + logger.info() << "Installer stdout:" << process.readAllStandardOutput(); + logger.info() << "Installer stderr:" << process.readAllStandardError(); process.waitForFinished(); if (process.exitCode() != 0) {