Omit one redundant debugging message

This commit is contained in:
Håkon Hægland 2022-03-24 13:47:57 +01:00
parent fbd6c03dd6
commit a3c131955f

View File

@ -293,7 +293,7 @@ checkDoGasLiftOptimization_(const std::string &well_name)
auto itr = this->ecl_wells_.find(well_name);
if (itr == this->ecl_wells_.end()) {
// well_name is not present in the well_model's well container
displayDebugMessage_("Could not find well in ecl_wells. Skipping.", well_name);
//displayDebugMessage_("Could not find well in ecl_wells. Skipping.", well_name);
return false;
}
const Well *well = (itr->second).first;