ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
1

How to redirect warnings to the screen?

asked 2012-01-11 22:43:25 -0500

Felix Tr gravatar image

Hello all,

I am writing code C code that uses ROS and my OS is Linux. I also use launch file in order to run my program.

My problem: I don´t see the warnings on the screen after compilation. The only thing I am able to see is this message:

[rosmake-3] Finished <<< guiPackage [PASS] [ 4.21 seconds ] -- WARNING: 2 compiler warnings

My Questions:

  1. Is this problem connected to the launch file or not?
  2. Whatever the answer for 1 is, how can I see the warnings on the shell screen of Linux in this case?

Thank you all for your time, Felix.

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
2

answered 2012-01-11 23:01:40 -0500

Hi Felix,

this cannot be connected to any launch file, since the launch file is not used during compile time.

There are two ways of seeing the warnings:

  1. There is a message at the beginning of the rosmake output, which looks something like this:

    [ rosmake ] Logging to directory/home/martin/.ros/rosmake/rosmake_output-20120112-135426

    All logs (including the warnings) are in files below that directory.

  2. You can run make instead of rosmake to see the warnings. Note however that make doesn't build the dependencies. Also you'll probably need to run make clean beforehand to see anything interesting going on.

edit flag offensive delete link more

Comments

Also you can run rosmake with verbose turned on '-V' option.
tfoote gravatar image tfoote  ( 2012-01-12 17:40:32 -0500 )edit

Question Tools

Stats

Asked: 2012-01-11 22:43:25 -0500

Seen: 430 times

Last updated: Jan 11 '12