mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 13:05:51 +03:00
Log invocation, useful for debugging startup issues
This commit is contained in:
parent
8ca5035c42
commit
baa571018e
1 changed files with 6 additions and 1 deletions
|
@ -524,7 +524,12 @@ void Application::setupLogging()
|
|||
|
||||
logger->enterNextLogFile();
|
||||
|
||||
qCInfo(lcApplication) << QString::fromLatin1("################## %1 locale:[%2] ui_lang:[%3] version:[%4] os:[%5]").arg(_theme->appName()).arg(QLocale::system().name()).arg(property("ui_lang").toString()).arg(_theme->version()).arg(Utility::platformName());
|
||||
qCInfo(lcApplication) << "##################" << _theme->appName()
|
||||
<< "locale:" << QLocale::system().name()
|
||||
<< "ui_lang:" << property("ui_lang")
|
||||
<< "version:" << _theme->version()
|
||||
<< "os:" << Utility::platformName();
|
||||
qCInfo(lcApplication) << "Arguments:" << qApp->arguments();
|
||||
}
|
||||
|
||||
void Application::slotUseMonoIconsChanged(bool)
|
||||
|
|
Loading…
Reference in a new issue