forked from autowarefoundation/autoware_utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogger_level_configure.cpp
62 lines (51 loc) · 2.1 KB
/
logger_level_configure.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Copyright 2023 Tier IV, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "autoware_utils_logging/logger_level_configure.hpp"
#include <rcutils/logging.h>
namespace autoware_utils_logging
{
LoggerLevelConfigure::LoggerLevelConfigure(rclcpp::Node * node) : ros_logger_(node->get_logger())
{
using std::placeholders::_1;
using std::placeholders::_2;
srv_config_logger_ = node->create_service<ConfigLogger>(
"~/config_logger", std::bind(&LoggerLevelConfigure::on_logger_config_service, this, _1, _2));
}
void LoggerLevelConfigure::on_logger_config_service(
const ConfigLogger::Request::SharedPtr request, const ConfigLogger::Response::SharedPtr response)
{
int logging_severity;
const auto ret_level = rcutils_logging_severity_level_from_string(
request->level.c_str(), rcl_get_default_allocator(), &logging_severity);
if (ret_level != RCUTILS_RET_OK) {
response->success = false;
RCLCPP_WARN_STREAM(
ros_logger_, "Failed to change logger level for "
<< request->logger_name
<< " due to an invalid logging severity: " << request->level);
return;
}
const auto ret_set =
rcutils_logging_set_logger_level(request->logger_name.c_str(), logging_severity);
if (ret_set != RCUTILS_RET_OK) {
response->success = false;
RCLCPP_WARN_STREAM(ros_logger_, "Failed to set logger level for " << request->logger_name);
return;
}
response->success = true;
RCLCPP_INFO_STREAM(
ros_logger_, "Logger level [" << request->level << "] is set for " << request->logger_name);
return;
}
} // namespace autoware_utils_logging