remove log message

This commit is contained in:
Jean-Francois Dockes 2020-09-30 15:02:15 +02:00
parent e8a5ee327d
commit 1492b5fff5

View File

@ -925,7 +925,6 @@ bool path_streamopen(const std::string& path, int mode, std::fstream& outstream)
outstream.open(path, std::ios_base::openmode(mode));
#endif
if (!outstream.is_open()) {
LOGERR("path_streamopen("<<path<< ", "<<mode<<") errno "<<errno<<"\n");
return false;
}
return true;