How to use rqt_console for debugging in ROS

[ROS in 5 mins] 048 - How to use rqt_console for debugging

Written by Bayode Aderinola

15/10/2018

Learn how to use rqt_console for debugging by setting the logger level for ROS nodes. We’ll see some sample messages generated, including that of a turtle, which we will intentionally run into a wall!

Let’s go!

Step1: Create an account and/or Login to Robot Ignite Academy (RIA)

On RIA, you get access to the best online ROS courses and environment. No need to install and set up ROS locally – the only thing you need is a browser!

  • Create an account and/or login here.
  • Launch the ROS Basics in 5 Days Python course.
  • You’ll now have access to the simulation screen with a Notebook, an Editor, four Shells, a Simulation Window, and a Graphical Interface. We are only using the Graphical Interface and Shells for this demo.

Step 2: Launch rqt_console and related commands

Start the RQT tools and a Turtle:

  1. On Shell #1, run rqt_console: user:~$ rosrun rqt_console rqt_console
  2. On Shell #2, run rqt_logger_level: user:~$ rosrun rqt_logger_level rqt_logger_level
  3. On Shell #3, run  turtlesim_node:  user:~$ rosrun turtlesim turtlesim_node

Cannot see much output yet? Not to worry! Now click on the computer monitor icon to the right of the Editor screen to open the Graphical Tools app.

Open the Graphical Tools

Open the Graphical Tools

You should see a screen shown below:

rqt_console Debugging Screens

rqt_console Debugging Screens

The three windows shown above are the ones we launched on Shells #1-3 earlier.

  • The rqt_console window shows messages from the current node being debugged, based on the Severity level set.
  • The rqt_logger_level is where the Severity (or Verbosity or Logger) level is actually set for each node.
  • The TurtleSim window shows the “scapeturtle” we’re using for experiments in this post 😀 .

The current Severity for the /turtlesim node is Info, as you can see from the image. Let’s change that.

  1. Focus the rqt_logger_level window by clicking on it.
  2. Click on the “Refresh” button under the Nodes lists. You should see the /turtlesim node appear now.
  3. Select /tutlesim from the Nodes lists. Looking at the Levels list, you’ll see that “Info” is selected for this node by default.
  4. Change the Level from “Info” to “Debug” and observe the changes on the rqt_console screen. What did you notice? Too many messages among other things!
rqt_console - Before Changing Logger Level

rqt_console – Before Changing Logger Level

 

rqt_console - After Changing Logger Level

rqt_console – After Changing Logger Level

Perhaps everything has been a bit boring till now, so now let’s move to the fun part – run the “scapeturtle” into a wall!

  1. Change the Level to “Warn” in the rqt_logger_level window.
  2. Clean all current messages on the rqt_console window by clicking on the brush icon.
  3. On Shell #4, run the keyboard teleop in order to control the turtle: user:~$ rosrun turtlesim turtle_teleop_key
  4. Keeping the Shell #4 active, use the keyboard to move the turtle forward for a few seconds, so that it runs into the wall!

Now go back to the Graphical Tools window, you should have something like this:

rqt_console - ScapeTurtle runs into a Wall!

rqt_console – ScapeTurtle runs into a Wall!

So you finally ran the turtle into a wall…move to the next section for the verdict!

Step 3: Master the Concept: rqt_console and Logger Levels

rqt_console is for viewing the messages from nodes according to the verbosity level, which is set with rqt_logger_level.

Here are key points to note about the Levels:

  • Debug is the lowest level, and Fatal is the highest.
  • The lower levels usually have more messages than the higher ones. In fact, we would prefer not to see messages from levels like Error and Fatal!
  • Each Level will also show messages from the Levels below it. For example, we would still get the Warn messages on Info level. (Try it out!)

Read more above the Levels at: http://wiki.ros.org/Verbosity%20Levels

And that’s it!

Extra: Video

Prefer to see the ‘sights and sounds’ version of this post? We made this video just for you!

Feedback

If you are interested in this topic, please check our ROS Basics in 5 Days course where you’ll learn more about the debugging tools available in ROS.

Did you like this post? Please leave a comment on the comments section below, so we can interact and learn from each other.

Thank you!

Masterclass 2023 batch2 blog banner

Check Out These Related Posts

129. ros2ai

129. ros2ai

I would like to dedicate this episode to all the ROS Developers who believe that ChatGPT or...

read more

0 Comments

Submit a Comment

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Pin It on Pinterest

Share This