How do I configure log level for a node?
In the wiki page "http://wiki.ros.org/rosconsole#Configuration", it is stated that one can change the configuration for a package with log4j.logger.ros.my_package_name=DEBUG
. However, this is not apparently not for a node but for a package and secondly, by supposing that "node" is meant and not "package", this simply adds a logger ros.my_package_name
which is not used because the used logger is ros (or ros.roscpp, I still didn't find out). This logger is added to all nodes.
To sum up, I'm confused about loggers and don't know if all nodes use the same logger or each node use its own instance of a logger.