change std:cout to OPM::debug

This commit is contained in:
hnil 2022-11-04 16:26:12 +01:00
parent a86bd1c585
commit 85bfa13c46

View File

@ -816,9 +816,11 @@ namespace Opm
}
if(not(diag_ell > 0.0)){
std::cout << "Diagonal element for cprw on "
std::stringstream msg;
msg << "Diagonal element for cprw on "
<< this->name()
<< " is " << diag_ell << std::endl;
<< " is " << diag_ell;
OpmLog::debug(msg.str());
}
jacobian[welldof_ind][welldof_ind] = diag_ell;
}else{