From 3d0fa2e7c73dfce7621af939086cb58b46a23d17 Mon Sep 17 00:00:00 2001 From: Kristian Bendiksen Date: Wed, 22 Sep 2021 14:37:44 +0200 Subject: [PATCH] Remove excessive debug logging of well centers. --- .../Completions/RimEllipseFractureTemplate.cpp | 3 --- .../ReservoirDataModel/RigStimPlanFractureDefinition.cpp | 6 +----- 2 files changed, 1 insertion(+), 8 deletions(-) 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; } }