From 533676d6969eb7c0f1e530c39ca30a9c4f17a0a4 Mon Sep 17 00:00:00 2001 From: Chris Lalancette Date: Tue, 14 May 2019 13:13:23 +0000 Subject: [PATCH] Revert "Changes the default 3rd party logger from rcl_logging_noop to rcl_logging_log4cxx (#425)" This reverts commit ac8ee907405748684d1184ca4fd6257313f20a5c. Signed-off-by: Chris Lalancette --- rcl/cmake/get_default_rcl_logging_implementation.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rcl/cmake/get_default_rcl_logging_implementation.cmake b/rcl/cmake/get_default_rcl_logging_implementation.cmake index e8b93a63e..e035ed385 100644 --- a/rcl/cmake/get_default_rcl_logging_implementation.cmake +++ b/rcl/cmake/get_default_rcl_logging_implementation.cmake @@ -24,13 +24,13 @@ 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_log4cxx + # is set then use that, otherwise default to using rcl_logging_noop if(NOT "${RCL_LOGGING_IMPLEMENTATION}" STREQUAL "") set(_logging_implementation "${RCL_LOGGING_IMPLEMENTATION}") elseif(NOT "$ENV{RCL_LOGGING_IMPLEMENTATION}" STREQUAL "") set(_logging_implementation "$ENV{RCL_LOGGING_IMPLEMENTATION}") else() - set(_logging_implementation rcl_logging_log4cxx) + set(_logging_implementation rcl_logging_noop) endif() # persist implementation decision in cache