From 8cd83b4a8e89be6c8c335c6ead790b27cc2de01c Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Thu, 25 Jun 2020 10:23:18 +0200 Subject: [PATCH] [PL/BC] Rm noisy debug messages in PVCDBC. --- ...bleConstraintDirichletBoundaryCondition.cpp | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/ProcessLib/BoundaryCondition/PrimaryVariableConstraintDirichletBoundaryCondition.cpp b/ProcessLib/BoundaryCondition/PrimaryVariableConstraintDirichletBoundaryCondition.cpp index d36fd179e97..cc8e43e5652 100644 --- a/ProcessLib/BoundaryCondition/PrimaryVariableConstraintDirichletBoundaryCondition.cpp +++ b/ProcessLib/BoundaryCondition/PrimaryVariableConstraintDirichletBoundaryCondition.cpp @@ -90,12 +90,6 @@ void PrimaryVariableConstraintDirichletBoundaryCondition::getEssentialBCValues( if (_less && local_x[0] < _constraint_threshold_parameter(t, pos).front()) { - DBUG( - "PrimaryVariableConstraintDirichletBoundaryCondition {:f} " - "< {:f} - value {:f} will be set for dof {:d}.", - local_x[0], _constraint_threshold_parameter(t, pos).front(), - _parameter(t, pos).front(), global_index); - bc_values.ids.emplace_back(global_index); bc_values.values.emplace_back(_parameter(t, pos).front()); } @@ -103,21 +97,9 @@ void PrimaryVariableConstraintDirichletBoundaryCondition::getEssentialBCValues( local_x[0] > _constraint_threshold_parameter(t, pos).front()) { - DBUG( - "PrimaryVariableConstraintDirichletBoundaryCondition {:f} " - "> {:f} - value {:f} will be set for dof {:d}.", - local_x[0], _constraint_threshold_parameter(t, pos).front(), - _parameter(t, pos).front(), global_index); - bc_values.ids.emplace_back(global_index); bc_values.values.emplace_back(_parameter(t, pos).front()); } - else - { - DBUG( - "PrimaryVariableConstraintDirichletBoundaryCondition " - "condition not satisfied - bc won't be set."); - } } } } -- GitLab