Skip to content

Commit

Permalink
chore(behavior_velocity_planner): use DEBUG for launching modules (au…
Browse files Browse the repository at this point in the history
…towarefoundation#5897)

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
  • Loading branch information
takayuki5168 authored and karishma1911 committed May 26, 2024
1 parent 7799c66 commit ca75a28
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ void SceneModuleManagerInterface::deleteExpiredModules(
void SceneModuleManagerInterface::registerModule(
const std::shared_ptr<SceneModuleInterface> & scene_module)
{
RCLCPP_INFO(
RCLCPP_DEBUG(
logger_, "register task: module = %s, id = %lu", getModuleName(), scene_module->getModuleId());
registered_module_id_set_.emplace(scene_module->getModuleId());
scene_modules_.insert(scene_module);
Expand All @@ -183,7 +183,7 @@ void SceneModuleManagerInterface::registerModule(
void SceneModuleManagerInterface::unregisterModule(
const std::shared_ptr<SceneModuleInterface> & scene_module)
{
RCLCPP_INFO(
RCLCPP_DEBUG(
logger_, "unregister task: module = %s, id = %lu", getModuleName(),
scene_module->getModuleId());
registered_module_id_set_.erase(scene_module->getModuleId());
Expand Down

0 comments on commit ca75a28

Please sign in to comment.