Skip to content

Commit

Permalink
fix(components): remove incorrect log line (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
domire8 authored Nov 13, 2024
1 parent f304cff commit 9324ea1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ Release Versions:
- [2.1.1](#211)
- [2.1.0](#210)

## Upcoming changes

- fix(components): remove incorrect log line (#166)

## 5.0.2

### November 11th, 2024
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -349,10 +349,9 @@ def __configure_outputs(self) -> bool:
"""
success = True
for signal_name, output_dict in self._ComponentInterface__outputs.items():
self.get_logger().error(f"{signal_name}, {output_dict}")
try:
topic_name = self.get_parameter_value(signal_name + "_topic")
self.get_logger().error(f"Configuring output '{signal_name}' with topic name '{topic_name}'.")
self.get_logger().debug(f"Configuring output '{signal_name}' with topic name '{topic_name}'.")
publisher = self.create_lifecycle_publisher(msg_type=output_dict["message_type"], topic=topic_name,
qos_profile=self.get_qos())
self._ComponentInterface__set_output_publisher(signal_name, publisher)
Expand Down

0 comments on commit 9324ea1

Please sign in to comment.