From bc09c0b337cbc9ea5e5f9a836572b2b69ed6bb16 Mon Sep 17 00:00:00 2001 From: burekn Date: Tue, 4 Dec 2018 22:17:41 -0800 Subject: [PATCH] Temporarily switching the default to noop logger ext_lib while system dependency issue is solved for Windows/Mac. --- rcl/cmake/get_default_rc_logging_implementation.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rcl/cmake/get_default_rc_logging_implementation.cmake b/rcl/cmake/get_default_rc_logging_implementation.cmake index 84e2f89c48..b49da4afb6 100644 --- a/rcl/cmake/get_default_rc_logging_implementation.cmake +++ b/rcl/cmake/get_default_rc_logging_implementation.cmake @@ -24,13 +24,13 @@ macro(get_default_rc_logging_implementation var) # if logging implementation already specified or RC_LOGGING_IMPLEMENTATION environment variable - # is set then use that, otherwise default to using rc_logging_log4cxx + # is set then use that, otherwise default to using rc_logging_noop if(NOT "${RC_LOGGING_IMPLEMENTATION}" STREQUAL "") set(_logging_implementation "${RC_LOGGING_IMPLEMENTATION}") elseif(NOT "$ENV{RC_LOGGING_IMPLEMENTATION}" STREQUAL "") set(_logging_implementation "$ENV{RC_LOGGING_IMPLEMENTATION}") else() - set(_logging_implementation rc_logging_log4cxx) + set(_logging_implementation rc_logging_noop) endif() # persist implementation decision in cache