Browse Source

Fix log statement in aruco_tag_locator.py

humble
Binit Shah 3 months ago
committed by GitHub
parent
commit
2b5656f410
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      stretch_ros_tutorials/aruco_tag_locator.py

+ 1
- 1
stretch_ros_tutorials/aruco_tag_locator.py View File

@ -154,7 +154,7 @@ class LocateArUcoTag(hm.HelloNode):
transform = self.tf_buffer.lookup_transform('base_link',
tag_name,
now)
self.get_logger().info("Found Requested Tag: \n%s", transform)
self.get_logger().info(f"Found Requested Tag: \n{transform}")
# Publish the transform
self.transform_pub.publish(transform)

Loading…
Cancel
Save