1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

add error message when opening log file fails

This commit is contained in:
Rafael Bachmann 2015-12-17 19:00:14 +01:00
parent 6cac60f32d
commit d23824dd0e

View File

@ -209,6 +209,11 @@ inline QString msgSendArgumentFailed()
"Unable to send command line arguments to the already running instance. It appears to be not responding.");
}
inline QString msgLogfileOpenFailed()
{
return QCoreApplication::translate("Application", "Failed to open log file");
}
// Prepare a remote argument: If it is a relative file, add the current directory
// since the the central instance might be running in a different directory.
inline QString prepareRemoteArgument(const QString &arg)
@ -313,7 +318,8 @@ void logInit(QString fileName)
logStream = new QTextStream(file);
qInstallMessageHandler(mainMessageOutput);
} else {
// TODO error popup
displayError(msgLogfileOpenFailed());
}
}