FileSaver: missing endl when printing exception details

This commit is contained in:
Albert S. 2019-04-22 23:13:04 +02:00
parent e37aa61eda
commit 5a99890d28

View File

@ -130,7 +130,7 @@ SaveFileResult FileSaver::saveFile(const QFileInfo &fileInfo)
} }
catch(QSSGeneralException &e) catch(QSSGeneralException &e)
{ {
Logger::error() << "Error while processing" << absPath << ":" << e.message; Logger::error() << "Error while processing" << absPath << ":" << e.message << endl;
return PROCESSFAIL; return PROCESSFAIL;
} }
} }