Do not refer users to issue tracker if multiple procs log.

This is currently still happening due to the implementation of
OPM_THROW whenever the linear solver does not converge. This
happens quite often and we might not want to get overwhelmed by
the issue tracker.
This commit is contained in:
Markus Blatt 2016-10-14 10:47:16 +02:00
parent f3ac93a8c8
commit a424516639

View File

@ -100,9 +100,10 @@ private:
{ {
if( fs::file_size(file) ) if( fs::file_size(file) )
{ {
std::cerr << "WARNING: There has been logging out by non-root process " std::cerr << "WARNING: There has been logging to file "
<< rank << std::endl<<"Please report this in the issue tracker!" << file.string() <<" by process "
<< std::endl; << rank << std::endl;
fs::ifstream in(file); fs::ifstream in(file);
of<<std::endl<< std::endl; of<<std::endl<< std::endl;
of<<"======================================================="; of<<"=======================================================";