Size: 1064
Comment:
|
Size: 1099
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
## repository: https://code.ros.org/svn/ros | |
Line 4: | Line 5: |
rosout is the name of the log reporting mechanism in ROS. It can be thought as comprising several components: * a rosout node for subscribing, logging, and republishing the messages * the global `/rosout` topic * the global `/rosout_agg` topic for subscribing to an aggregated feed * `roslib/Log` type * client APIs to facilitate easy use of the rosout reporting mechanism |
rosout is the name of the log reporting mechanism in ROS. It can be thought as comprising several components: * a rosout node for subscribing, logging, and republishing the messages * the global `/rosout` topic * the global `/rosout_agg` topic for subscribing to an aggregated feed * `roslib/Log` type * client APIs to facilitate easy use of the rosout reporting mechanism |
Line 33: | Line 34: |
string msg #error message | string msg #error message |
Show EOL distros:
Package Summary
System-wide logging mechanism for messages sent to the /rosout topic.
- Author: Josh Faust/jfaust@willowgarage.com
- License: BSD
- Repository: ros
- Source: svn https://code.ros.org/svn/ros/stacks/ros_comm/tags/ros_comm-1.4.8
Package Summary
System-wide logging mechanism for messages sent to the /rosout topic.
- Author: Josh Faust/jfaust@willowgarage.com
- License: BSD
- Source: git https://github.com/ros/ros_comm.git (branch: ros_comm-1.6)
Package Summary
System-wide logging mechanism for messages sent to the /rosout topic.
- Author: Josh Faust/jfaust@willowgarage.com
- License: BSD
- Source: git https://github.com/ros/ros_comm.git (branch: fuerte-devel)
Package Summary
System-wide logging mechanism for messages sent to the /rosout topic.
- Maintainer status: maintained
- Maintainer: Dirk Thomas <dthomas AT osrfoundation DOT org>
- Author: Josh Faust
- License: BSD
- Source: git https://github.com/ros/ros_comm.git (branch: groovy-devel)
Package Summary
System-wide logging mechanism for messages sent to the /rosout topic.
- Maintainer status: maintained
- Maintainer: Dirk Thomas <dthomas AT osrfoundation DOT org>
- Author: Josh Faust
- License: BSD
- Source: git https://github.com/ros/ros_comm.git (branch: hydro-devel)
Package Summary
System-wide logging mechanism for messages sent to the /rosout topic.
- Maintainer status: maintained
- Maintainer: Dirk Thomas <dthomas AT osrfoundation DOT org>
- Author: Josh Faust
- License: BSD
- Source: git https://github.com/ros/ros_comm.git (branch: indigo-devel)
Package Summary
System-wide logging mechanism for messages sent to the /rosout topic.
- Maintainer status: maintained
- Maintainer: Dirk Thomas <dthomas AT osrfoundation DOT org>
- Author: Josh Faust
- License: BSD
- Source: git https://github.com/ros/ros_comm.git (branch: indigo-devel)
Package Summary
System-wide logging mechanism for messages sent to the /rosout topic.
- Maintainer status: maintained
- Maintainer: Jacob Perron <jacob AT openrobotics DOT org>, Michael Carroll <michael AT openrobotics DOT org>, Shane Loretz <sloretz AT openrobotics DOT org>
- Author: Josh Faust, Dirk Thomas <dthomas AT osrfoundation DOT org>
- License: BSD
- Source: git https://github.com/ros/ros_comm.git (branch: kinetic-devel)
Package Summary
System-wide logging mechanism for messages sent to the /rosout topic.
- Maintainer status: maintained
- Maintainer: Dirk Thomas <dthomas AT osrfoundation DOT org>
- Author: Josh Faust
- License: BSD
- Source: git https://github.com/ros/ros_comm.git (branch: lunar-devel)
Package Summary
System-wide logging mechanism for messages sent to the /rosout topic.
- Maintainer status: maintained
- Maintainer: Jacob Perron <jacob AT openrobotics DOT org>, Michael Carroll <michael AT openrobotics DOT org>, Shane Loretz <sloretz AT openrobotics DOT org>
- Author: Josh Faust, Dirk Thomas <dthomas AT osrfoundation DOT org>
- License: BSD
- Source: git https://github.com/ros/ros_comm.git (branch: melodic-devel)
Package Summary
System-wide logging mechanism for messages sent to the /rosout topic.
- Maintainer status: maintained
- Maintainer: Michael Carroll <michael AT openrobotics DOT org>, Shane Loretz <sloretz AT openrobotics DOT org>
- Author: Josh Faust, Dirk Thomas <dthomas AT osrfoundation DOT org>, Jacob Perron <jacob AT openrobotics DOT org>
- License: BSD
- Source: git https://github.com/ros/ros_comm.git (branch: noetic-devel)
Overview
rosout is the name of the log reporting mechanism in ROS. It can be thought as comprising several components: * a rosout node for subscribing, logging, and republishing the messages * the global /rosout topic * the global /rosout_agg topic for subscribing to an aggregated feed * roslib/Log type * client APIs to facilitate easy use of the rosout reporting mechanism
The /rosout node is part of roscore and has preferential startup order.
Verbosity Levels
Verbosity Level Best Practices
Log.msg
## ## Severity level constants ## int FATAL=1 #fatal/critical level int ERROR=2 #error level int WARN=4 #warning level int DEBUG=8 #debug level int INFO=16 #general level ## ## Fields ## int level string name #name of node that failed (autoset) string msg #error message string[] topics #topic names that the node publishes