Global logger for logging without a node
So far, all the examples I've seen for logging involves using the get_logger()
method of rclcpp::Node
, e.g.
RCLCPP_INFO(get_logger(), "my_message");
Is there a global logger that is can be used for logging without having access to a node?