rosconsole command line utility not honoring ROSCONSOLE_FORMAT
I have set up my shells to have a custom ROSCONSOLE_FORMAT
export ROSCONSOLE_FORMAT='${time:%T.%f}[${severity}] ${node}/${logger}: ${message}'
When I run or launch nodes, they have the desired format:
22:45:20.180207[ INFO] /test_node/ros.test: Test node message
However, if I use the rosconsole command line utility,
rosconsole echo -l info
I get the default format that does not have the time in it:
[ INFO ] [/test_node]: Test node message
How do I make the output of the rosconsole command line utility show in the desired format?
I know I can pass option -v to show verbose messages, but I don't want all of that. Honestly, I am having trouble finding documentation for the command line utility. Everything I search for brings me to the library and it's not on the wiki's utility page.