Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add change error to warn for multiple loggers #384

Merged
merged 7 commits into from
Feb 7, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions rcl/src/rcl/logging_rosout.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include "rcl/visibility_control.h"
#include "rcl_interfaces/msg/log.h"
#include "rcutils/allocator.h"
#include "rcutils/logging_macros.h"
#include "rcutils/macros.h"
#include "rcutils/types/hash_map.h"
#include "rcutils/types/rcutils_ret.h"
Expand Down Expand Up @@ -153,8 +154,10 @@ rcl_ret_t rcl_logging_rosout_init_publisher_for_node(
return RCL_RET_ERROR;
}
if (rcutils_hash_map_key_exists(&__logger_map, &logger_name)) {
RCL_SET_ERROR_MSG("Logger already initialized for node.");
return RCL_RET_ALREADY_INIT;
// @todo: nburek enfornce node name unique
nuclearsandwich marked this conversation as resolved.
Show resolved Hide resolved
RCUTILS_LOG_WARN_NAMED("log_infrastructure", "Logger already initialized for node");
nuclearsandwich marked this conversation as resolved.
Show resolved Hide resolved
// RCL_SET_ERROR_MSG("Logger already initialized for node.");
// return RCL_RET_ALREADY_INIT;
nuclearsandwich marked this conversation as resolved.
Show resolved Hide resolved
}

// Create a new Log message publisher on the node
Expand Down