mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
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:
parent
3ea13f736f
commit
abf0747b50
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user