Skip to content

Commit 7ba59e8

Browse files
authored
Change log level
1 parent 331652f commit 7ba59e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/container.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ Stage* ContainerBase::findChild(const std::string& name) const {
345345
else if (auto* parent = dynamic_cast<const ContainerBase*>(child.get()))
346346
return parent->findChild(name.substr(pos + 1));
347347
}
348-
RCLCPP_WARN_STREAM(rclcpp::get_logger("ContainerBase"), fmt::format("Child '{}' not found", name));
348+
RCLCPP_DEBUG_STREAM(rclcpp::get_logger("ContainerBase"), fmt::format("Child '{}' not found", name));
349349
return nullptr;
350350
}
351351

0 commit comments

Comments
 (0)