Face logging macros

These macros augment the log message with some face-specific information, such as the face ID, that are useful to distinguish which face produced the message. More...

Macros

#define NFD_LOG_FACE_DEBUG(msg)   NFD_LOG_FACE(DEBUG, msg)
 Log a message at DEBUG level. More...
 
#define NFD_LOG_FACE_ERROR(msg)   NFD_LOG_FACE(ERROR, msg)
 Log a message at ERROR level. More...
 
#define NFD_LOG_FACE_INFO(msg)   NFD_LOG_FACE(INFO, msg)
 Log a message at INFO level. More...
 
#define NFD_LOG_FACE_TRACE(msg)   NFD_LOG_FACE(TRACE, msg)
 Log a message at TRACE level. More...
 
#define NFD_LOG_FACE_WARN(msg)   NFD_LOG_FACE(WARN, msg)
 Log a message at WARN level. More...
 

Detailed Description

These macros augment the log message with some face-specific information, such as the face ID, that are useful to distinguish which face produced the message.

It is strongly recommended to use these macros instead of the generic ones for all logging inside Face, LinkService, Transport subclasses.

Macro Definition Documentation

◆ NFD_LOG_FACE_DEBUG

#define NFD_LOG_FACE_DEBUG (   msg)    NFD_LOG_FACE(DEBUG, msg)

Log a message at DEBUG level.

Definition at line 146 of file face-common.hpp.

◆ NFD_LOG_FACE_ERROR

#define NFD_LOG_FACE_ERROR (   msg)    NFD_LOG_FACE(ERROR, msg)

Log a message at ERROR level.

Definition at line 155 of file face-common.hpp.

◆ NFD_LOG_FACE_INFO

#define NFD_LOG_FACE_INFO (   msg)    NFD_LOG_FACE(INFO, msg)

Log a message at INFO level.

Definition at line 149 of file face-common.hpp.

◆ NFD_LOG_FACE_TRACE

#define NFD_LOG_FACE_TRACE (   msg)    NFD_LOG_FACE(TRACE, msg)

Log a message at TRACE level.

Definition at line 143 of file face-common.hpp.

◆ NFD_LOG_FACE_WARN

#define NFD_LOG_FACE_WARN (   msg)    NFD_LOG_FACE(WARN, msg)

Log a message at WARN level.

Definition at line 152 of file face-common.hpp.