diff --git a/third-party/rsutils/include/rsutils/easylogging/easyloggingpp.h b/third-party/rsutils/include/rsutils/easylogging/easyloggingpp.h index 781463d3c76..d058a71068b 100644 --- a/third-party/rsutils/include/rsutils/easylogging/easyloggingpp.h +++ b/third-party/rsutils/include/rsutils/easylogging/easyloggingpp.h @@ -48,7 +48,8 @@ #else //__ANDROID__ -// Direct log to ELPP, without conversion to string first +// Direct log to ELPP, without conversion to string first; use this as an optimization, if you have simple string output +// // We've seen cases where this fails in U22, causing weird effects with custom overloads/types (e.g., json) #define LIBRS_LOG_STR_( LEVEL, STR ) \ do \ @@ -94,6 +95,7 @@ namespace rsutils { +// This is a caching of LIBREALSENSE_ELPP_ID in a string, as a performance optimization extern std::string const g_librealsense_elpp_id;