stop logger,

This commit is contained in:
mrbesen 2021-12-14 17:53:51 +01:00
parent c8220e2b8d
commit 96a1556d7b
Signed by untrusted user: MrBesen
GPG Key ID: 596B2350DCD67504
1 changed files with 4 additions and 1 deletions

View File

@ -13,5 +13,8 @@ int main(int argc, char *argv[])
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
int result = a.exec();
Log::stop();
return result;
}