diff --git a/ApplicationLibCode/ProjectDataModel/Completions/RimEllipseFractureTemplate.cpp b/ApplicationLibCode/ProjectDataModel/Completions/RimEllipseFractureTemplate.cpp index 75b3cacc14..9a3fb5073a 100644 --- a/ApplicationLibCode/ProjectDataModel/Completions/RimEllipseFractureTemplate.cpp +++ b/ApplicationLibCode/ProjectDataModel/Completions/RimEllipseFractureTemplate.cpp @@ -229,9 +229,6 @@ cvf::cref RimEllipseFractureTemplate::createFractureGrid( doubl ( cellPolygon[1].y() <= 0.0 && cellPolygon[2].y() >= 0.0 ) ) { wellCenterFractureCellIJ = std::make_pair( fractureCell.getI(), fractureCell.getJ() ); - RiaLogging::debug( - QString( "Setting wellCenterStimPlanCell at cell %1, %2" ) - .arg( QString::number( fractureCell.getI() ), QString::number( fractureCell.getJ() ) ) ); } } } diff --git a/ApplicationLibCode/ReservoirDataModel/RigStimPlanFractureDefinition.cpp b/ApplicationLibCode/ReservoirDataModel/RigStimPlanFractureDefinition.cpp index d441c737e7..355f8dae08 100644 --- a/ApplicationLibCode/ReservoirDataModel/RigStimPlanFractureDefinition.cpp +++ b/ApplicationLibCode/ReservoirDataModel/RigStimPlanFractureDefinition.cpp @@ -464,11 +464,7 @@ cvf::cref { if ( cellPolygon[1].y() >= 0.0 && cellPolygon[2].y() <= 0.0 ) { - wellCenterStimPlanCellIJ = std::make_pair( stimPlanCell.getI(), stimPlanCell.getJ() ); - RiaLogging::debug( - QString( "Setting wellCenterStimPlanCell at cell %1, %2" ) - .arg( QString::number( stimPlanCell.getI() ), QString::number( stimPlanCell.getJ() ) ) ); - + wellCenterStimPlanCellIJ = std::make_pair( stimPlanCell.getI(), stimPlanCell.getJ() ); wellCenterStimPlanCellFound = true; } }