Skip to content

Commit

Permalink
Change log level
Browse files Browse the repository at this point in the history
  • Loading branch information
sjahr authored Aug 12, 2024
1 parent 331652f commit 7ba59e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/container.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ Stage* ContainerBase::findChild(const std::string& name) const {
else if (auto* parent = dynamic_cast<const ContainerBase*>(child.get()))
return parent->findChild(name.substr(pos + 1));
}
RCLCPP_WARN_STREAM(rclcpp::get_logger("ContainerBase"), fmt::format("Child '{}' not found", name));
RCLCPP_DEBUG_STREAM(rclcpp::get_logger("ContainerBase"), fmt::format("Child '{}' not found", name));
return nullptr;
}

Expand Down

0 comments on commit 7ba59e8

Please sign in to comment.