From 522f3476c76d911d72922584b18df1fa1761f608 Mon Sep 17 00:00:00 2001 From: Tomoya Fujita Date: Fri, 23 Aug 2024 01:12:41 -0700 Subject: [PATCH] doc: rcl_logging_spdlog is the default impl. (#1177) Signed-off-by: Tomoya Fujita --- rcl/cmake/get_default_rcl_logging_implementation.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcl/cmake/get_default_rcl_logging_implementation.cmake b/rcl/cmake/get_default_rcl_logging_implementation.cmake index ebd8a0ca5..4be319cd2 100644 --- a/rcl/cmake/get_default_rcl_logging_implementation.cmake +++ b/rcl/cmake/get_default_rcl_logging_implementation.cmake @@ -24,7 +24,7 @@ macro(get_default_rcl_logging_implementation var) # if logging implementation already specified or RCL_LOGGING_IMPLEMENTATION environment variable - # is set then use that, otherwise default to using rcl_logging_noop + # is set then use that, otherwise default to using rcl_logging_spdlog if(NOT "${RCL_LOGGING_IMPLEMENTATION}" STREQUAL "") set(_logging_implementation "${RCL_LOGGING_IMPLEMENTATION}") elseif(NOT "$ENV{RCL_LOGGING_IMPLEMENTATION}" STREQUAL "")