Skip to content

Commit 0d15c52

Browse files
authored
Merge pull request #685 from ischeider/periodicBC_reduceOutput
Remove unnecessary default log output (3D periodic BC)
2 parents 7cc4623 + 6d43993 commit 0d15c52

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/constraint_framework/4C_constraint_framework_submodelevaluator_base.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ void CONSTRAINTS::SUBMODELEVALUATOR::ConstraintBase::evaluate_coupling_terms(
7878
{
7979
obj->evaluate_equation(*Q_dd_, *Q_dL_, *Q_Ld_, *constraint_vector_, *dis_np);
8080
}
81-
Core::IO::cout(Core::IO::verbose) << "Evaluated all constraint objects" << Core::IO::endl;
81+
Core::IO::cout(Core::IO::debug) << "Evaluated all constraint objects" << Core::IO::endl;
8282

8383
// Complete
8484
Q_dd_->complete();

src/constraint_framework/4C_constraint_framework_submodelevaluator_mpc.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -357,8 +357,8 @@ void CONSTRAINTS::SUBMODELEVALUATOR::RveMultiPointConstraintManager::build_perio
357357
Core::IO::cout(Core::IO::debug)
358358
<< "Position of matching Node: " << matchPosition[0] << ", " << matchPosition[1];
359359
if (rve_dim_ == Inpar::RveMpc::rve3d)
360-
Core::IO::cout(Core::IO::verbose) << ", " << matchPosition[2];
361-
Core::IO::cout(Core::IO::verbose) << Core::IO::endl;
360+
Core::IO::cout(Core::IO::debug) << ", " << matchPosition[2];
361+
Core::IO::cout(Core::IO::debug) << Core::IO::endl;
362362
for (auto nodeM : *rveBoundaryNodeIdMap[surf.first + "-"])
363363
{
364364
if (nodeP == rveCornerNodeIdMap[surf.second]) break;
@@ -501,8 +501,8 @@ void CONSTRAINTS::SUBMODELEVALUATOR::RveMultiPointConstraintManager::build_perio
501501
{
502502
PBCs.erase(PBCs.begin() + id);
503503
}
504-
Core::IO::cout(Core::IO::verbose)
505-
<< "All Node Pairs found. Following Nodes are coupled:" << Core::IO::endl;
504+
Core::IO::cout(Core::IO::debug) << "All Node Pairs found. Following Nodes are coupled:"
505+
<< Core::IO::endl;
506506

507507
// Create the vector of MPC "Elements
508508
int mpcId = 0;

0 commit comments

Comments
 (0)