Skip to content

Latest commit

 

History

History
76 lines (53 loc) · 3.26 KB

disable_module.rst

File metadata and controls

76 lines (53 loc) · 3.26 KB

Disable Logging Module

Setting the :ref:`dds_layer_log_verbosity_level`, translates into entries not being added to the log queue if the entry's level has lower importance than the set one. This check is performed when calling the macros defined in :ref:`dds_layer_log_logging`. However, it is possible to fully disable each macro (and therefore each verbosity level individually) at build time.

Applying either of the previously described methods will set the macro to be empty at configuration time, thus allowing the compiler to optimize the call out. This is done so that all the debugging messages present on the library are optimized out at build time if not building for debugging purposes, thus preventing them to impact performance.

INTERNAL_DEBUG CMake option activates log macros compilation, so the arguments of the macros are compiled. However:

  • It does not activate the log Warning and Error messages, i.e. the messages are not written in the log queue.

  • |EPROSIMA_LOG_INFO| has a special behaviour to simplify working with Multi-Config capability IDEs. If CMake option |LOG_NO_INFO| is OFF, or the C++ definition |HAVE_LOG_NO_INFO| is 0, then logging is enabled only for Debug configuration. In this scenario, setting |FASTDDS_ENFORCE_LOG_INFO| to ON will enable |EPROSIMA_LOG_INFO| even on non Debug configurations. This is specially useful when using the Fast DDS' logging module in an external application which links with Fast DDS compiled in Release. In that case, applications wanting to use all three levels of logging can simply add the following code prior to including any Fast DDS header:

    #define HAVE_LOG_NO_INFO 0
    #define FASTDDS_ENFORCE_LOG_INFO 1

Warning

INTERNAL_DEBUG can be automatically set to ON if CMake option EPROSIMA_BUILD is set to ON.

Old Log macros disable

Before version 2.8.2, Fast DDS project used log macros: logInfo, logWarning and logError, which may collide with other libraries. These log macros have been replaced by new ones with a more specific format: (e.g. EPROSIMA_LOG_INFO). In order to disable old macros compilation, use CMake option ENABLE_OLD_LOG_MACROS = ON or define ENABLE_OLD_LOG_MACROS_ 0 before including the log module #include <fastdds/dds/log/Log.hpp>.

Warning

These macros will be deprecated in future versions of Fast DDS. The use of the new format ones is encouraged.