Skip to content
Snippets Groups Projects
Commit 3652f69c authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

replace some INFO by DEBUG

parent 2bd584b1
No related branches found
No related tags found
No related merge requests found
Pipeline #5973 passed
......@@ -83,7 +83,7 @@ void SolverManager::update()
// Check for "floating" state blocks (not involved in any factor -> not observable problem)
if (state_blocks_2_factors_.at(state_ptr).empty())
{
WOLF_INFO("SolverManager::update(): StateBlock ", state_ptr, " is 'Floating' (not involved in any factor). Storing it apart.");
WOLF_DEBUG("SolverManager::update(): StateBlock ", state_ptr, " is 'Floating' (not involved in any factor). Storing it apart.");
new_floating_state_blocks.insert(state_ptr);
continue;
}
......@@ -176,6 +176,7 @@ void SolverManager::addFactor(const FactorBasePtr& fac_ptr)
// Check if it was stored as a 'floating' state block
if (floating_state_blocks_.count(st) == 1)
{
WOLF_DEBUG("SolverManager::addFactor(): Factor ", fac_ptr->id(), " involves state block ", st, " stored as 'floating'. Adding the state block to the solver.");
floating_state_blocks_.erase(st); // This line must be BEFORE addStateBlock()!
addStateBlock(st);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment