Go to the documentation of this file. 26 #ifndef NFD_DAEMON_COMMON_LOGGER_HPP 27 #define NFD_DAEMON_COMMON_LOGGER_HPP 29 #include <ndn-cxx/util/logger.hpp> 31 #define NFD_LOG_INIT(name) NDN_LOG_INIT(nfd.name) 32 #define NFD_LOG_MEMBER_DECL() NDN_LOG_MEMBER_DECL() 33 #define NFD_LOG_MEMBER_DECL_SPECIALIZED(cls) NDN_LOG_MEMBER_DECL_SPECIALIZED(cls) 34 #define NFD_LOG_MEMBER_INIT(cls, name) NDN_LOG_MEMBER_INIT(cls, nfd.name) 35 #define NFD_LOG_MEMBER_INIT_SPECIALIZED(cls, name) NDN_LOG_MEMBER_INIT_SPECIALIZED(cls, nfd.name) 37 #define NFD_LOG_TRACE NDN_LOG_TRACE 38 #define NFD_LOG_DEBUG NDN_LOG_DEBUG 39 #define NFD_LOG_INFO NDN_LOG_INFO 40 #define NFD_LOG_WARN NDN_LOG_WARN 41 #define NFD_LOG_ERROR NDN_LOG_ERROR 42 #define NFD_LOG_FATAL NDN_LOG_FATAL 44 #endif // NFD_DAEMON_COMMON_LOGGER_HPP