From ea1fb992f2b66f8713f86840eaeeea79fdcc487b Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Fri, 16 Dec 2022 10:28:52 +0100 Subject: [PATCH] Add a debug feedback about the reason of exiting the application. --- linphone-app/src/app/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/linphone-app/src/app/main.cpp b/linphone-app/src/app/main.cpp index df83da9af..ad26cf04d 100644 --- a/linphone-app/src/app/main.cpp +++ b/linphone-app/src/app/main.cpp @@ -89,6 +89,7 @@ int main (int argc, char *argv[]) { app->initContentApp(); ret = app->exec(); } while (ret == App::RestartCode); + qWarning() << "Exiting app with the code : " << ret; controller.stopApp(); // Stopping app before core to let time to GUI to process needed items from linphone. if( CoreManager::getInstance()){ auto core = CoreManager::getInstance()->getCore();