Better error message if .rpt of .log file could not open.
--HG-- branch : develop
This commit is contained in:
parent
0771c70cdd
commit
69a85e7ef2
|
@ -2098,7 +2098,7 @@ void VApplication::SendReport(const QString &reportName) const
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
content = reportFile.errorString() + "\r\n";
|
content = "RPT file error:" + reportFile.errorString() + "\r\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Additional information
|
// Additional information
|
||||||
|
@ -2129,8 +2129,7 @@ void VApplication::SendReport(const QString &reportName) const
|
||||||
reportObject.insert(QStringLiteral("description"), QJsonValue(report));
|
reportObject.insert(QStringLiteral("description"), QJsonValue(report));
|
||||||
reportObject.insert(QStringLiteral("public"), QJsonValue(QString("true")));
|
reportObject.insert(QStringLiteral("public"), QJsonValue(QString("true")));
|
||||||
|
|
||||||
content.append("\r\n");
|
content.append(QString("\r\n-------------------------------\r\n"));
|
||||||
content.append(QString("-------------------------------")+"\r\n");
|
|
||||||
content.append(QString("Log:")+"\r\n");
|
content.append(QString("Log:")+"\r\n");
|
||||||
|
|
||||||
QFile logFile(LogPath());
|
QFile logFile(LogPath());
|
||||||
|
@ -2141,7 +2140,7 @@ void VApplication::SendReport(const QString &reportName) const
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
content = logFile.errorString() + "\r\n";
|
content.append("\r\n Log file error:" + logFile.errorString() + "\r\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
const QString contentSection = QStringLiteral("content");
|
const QString contentSection = QStringLiteral("content");
|
||||||
|
|
Loading…
Reference in New Issue
Block a user