Remove excessive debug logging of well centers.

This commit is contained in:
Kristian Bendiksen 2021-09-22 14:37:44 +02:00
parent ebeaa8088c
commit 3d0fa2e7c7
2 changed files with 1 additions and 8 deletions

View File

@ -229,9 +229,6 @@ cvf::cref<RigFractureGrid> RimEllipseFractureTemplate::createFractureGrid( doubl
( cellPolygon[1].y() <= 0.0 && cellPolygon[2].y() >= 0.0 ) ) ( cellPolygon[1].y() <= 0.0 && cellPolygon[2].y() >= 0.0 ) )
{ {
wellCenterFractureCellIJ = std::make_pair( fractureCell.getI(), fractureCell.getJ() ); 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() ) ) );
} }
} }
} }

View File

@ -465,10 +465,6 @@ cvf::cref<RigFractureGrid>
if ( cellPolygon[1].y() >= 0.0 && cellPolygon[2].y() <= 0.0 ) if ( cellPolygon[1].y() >= 0.0 && cellPolygon[2].y() <= 0.0 )
{ {
wellCenterStimPlanCellIJ = std::make_pair( stimPlanCell.getI(), stimPlanCell.getJ() ); 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() ) ) );
wellCenterStimPlanCellFound = true; wellCenterStimPlanCellFound = true;
} }
} }