mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Add diagnostics for --datadir on Linux and Mac
This commit is contained in:
parent
4ebde70550
commit
6e1ffaebde
@ -334,6 +334,14 @@ int main(int argc, char *argv[]) {
|
||||
}
|
||||
#endif
|
||||
|
||||
initializeLogger();
|
||||
// After initializing the logger, any qDebug() messages will be queued but not written to console
|
||||
// until MainWindow is constructed below. In spite of that, we initialize the logger here so that
|
||||
// the intervening messages show up in the debug pane.
|
||||
//
|
||||
// The only time this is really noticeable is when initTranslations() presents its language
|
||||
// selection QDialog, which waits indefinitely for user input before MainWindow is constructed.
|
||||
|
||||
QString lastlanguage = settings.value(LangSetting, "").toString();
|
||||
if (lastlanguage.compare("is", Qt::CaseInsensitive)) // Convert code for Hebrew from 'is' to 'he'
|
||||
lastlanguage = "he";
|
||||
@ -387,14 +395,6 @@ int main(int argc, char *argv[]) {
|
||||
}
|
||||
} // end of for args loop
|
||||
|
||||
initializeLogger();
|
||||
// After initializing the logger, any qDebug() messages will be queued but not written to console
|
||||
// until MainWindow is constructed below. In spite of that, we initialize the logger here so that
|
||||
// the intervening messages show up in the debug pane.
|
||||
//
|
||||
// The only time this is really noticeable is when initTranslations() presents its language
|
||||
// selection QDialog, which waits indefinitely for user input before MainWindow is constructed.
|
||||
|
||||
qDebug().noquote() << "OSCAR starting" << QDateTime::currentDateTime().toString();
|
||||
qDebug() << "APP-NAME:" << QCoreApplication::applicationName();
|
||||
qDebug() << "APP-PATH:" << QCoreApplication::applicationDirPath();
|
||||
|
Loading…
Reference in New Issue
Block a user