Add data directory path to error message when unable to write test file.

- This is intended to make the error message and log entries more descriptive.
This commit is contained in:
Guy Scharf 2020-09-12 09:51:49 -07:00 committed by Guy Scharf
parent 3ea13f736f
commit abf0747b50

View File

@ -564,7 +564,7 @@ int main(int argc, char *argv[]) {
if (testFile.exists())
testFile.remove();
if (!testFile.open(QFile::ReadWrite)) {
QString errMsg = QObject::tr("Unable to write to OSCAR data directory") + "\n" +
QString errMsg = QObject::tr("Unable to write to OSCAR data directory") + " " + GetAppData() + "\n" +
GetAppData() + "\n" +
QObject::tr("Error code") + ": " + QString::number(testFile.error()) + " - " + testFile.errorString() + "\n\n" +
QObject::tr("OSCAR cannot continue and is exiting.") + "\n";