FileSaver: missing endl when printing exception details

This commit is contained in:
Albert S. 2019-04-22 23:13:04 +02:00
parent cfe30ae5fd
commit cb8909bfa7

View File

@ -122,7 +122,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;
} }
} }