Remove Leftover Debug Printout

This information already goes to the .DBG file so there's no need
to echo it to the main console as well.
This commit is contained in:
Bård Skaflestad 2023-10-24 09:51:12 +02:00
parent c01cc5b58c
commit 7a34c20120

View File

@ -278,7 +278,6 @@ std::unique_ptr<Matrix> blockJacobiAdjacency(const Grid& grid,
os << "Property tree for linear solvers:\n";
for (std::size_t i = 0; i<prm_.size(); i++) {
prm_[i].write_json(os, true);
std::cerr<< "debug: ["<<i<<"] : " << os.str() <<std::endl;
}
OpmLog::note(os.str());
}