mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
change std:cout to OPM::debug
This commit is contained in:
parent
a86bd1c585
commit
85bfa13c46
@ -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{
|
||||
|
Loading…
Reference in New Issue
Block a user