console_bridge
Macros
Logging Macros

Macros

#define logError(FORMAT, ARGS...)
 Log a formatted error string. More...
 
#define logWarn(FORMAT, ARGS...)
 Log a formatted warning string. More...
 
#define logInform(FORMAT, ARGS...)
 Log a formatted information string. More...
 
#define logDebug(FORMAT, ARGS...)
 Log a formatted debugging string. More...
 

Detailed Description

Macro Definition Documentation

◆ logDebug

#define logDebug (   FORMAT,
  ARGS... 
)
Value:
do { \
console_bridge_deprecated(); \
LOG_DEBUG(FORMAT, ## ARGS); } while(0)

Log a formatted debugging string.

Remarks
This macro takes the same arguments as printf.

◆ logError

#define logError (   FORMAT,
  ARGS... 
)
Value:
do { \
console_bridge_deprecated(); \
LOG_ERROR(FORMAT, ## ARGS); } while(0)

Log a formatted error string.

Remarks
This macro takes the same arguments as printf.

◆ logInform

#define logInform (   FORMAT,
  ARGS... 
)
Value:
do { \
console_bridge_deprecated(); \
LOG_INFO(FORMAT, ## ARGS); } while(0)

Log a formatted information string.

Remarks
This macro takes the same arguments as printf.

◆ logWarn

#define logWarn (   FORMAT,
  ARGS... 
)
Value:
do { \
console_bridge_deprecated(); \
LOG_WARN(FORMAT, ## ARGS); } while(0)

Log a formatted warning string.

Remarks
This macro takes the same arguments as printf.