Skip to content

Commit

Permalink
Modify logging mapping for type 'debug' from warning to info.
Browse files Browse the repository at this point in the history
Signed-off-by: Sriram Raghunathan <rsriram7@visteon.com>
  • Loading branch information
Sriram Raghunathan committed Dec 19, 2017
1 parent c38d5aa commit 23c8b0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rmw_fastrtps_cpp/src/rmw_logging.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ rmw_set_log_severity(rmw_log_severity_t severity)
// From rmw logging severity there is FATAL severity type we map it
// to ERROR type of Fast-RTPS which has maximum priority
case RMW_LOG_SEVERITY_DEBUG:
_severity = Log::Kind::Warning;
_severity = Log::Kind::Info;
break;
case RMW_LOG_SEVERITY_ERROR:
case RMW_LOG_SEVERITY_FATAL:
Expand Down

0 comments on commit 23c8b0f

Please sign in to comment.