DebugUtils 1.0.0
Cross-platform logging macros for Arduino and native tests
Loading...
Searching...
No Matches
Macros
Convenience Logging Macros

Macros

#define _PPE(...)   LOG_PRINT(LOG_ERROR, __VA_ARGS__)
 Print error level output without newline.
 
#define _PPW(...)   LOG_PRINT(LOG_WARN, __VA_ARGS__)
 Print warning level output without newline.
 
#define _PP(...)   LOG_PRINT(LOG_INFO, __VA_ARGS__)
 Print info level output without newline.
 
#define _PPD(...)   LOG_PRINT(LOG_DEBUG, __VA_ARGS__)
 Print debug level output without newline.
 
#define _PLE(...)   LOG_PRINTLN(LOG_ERROR, __VA_ARGS__)
 Print error level output with newline.
 
#define _PLW(...)   LOG_PRINTLN(LOG_WARN, __VA_ARGS__)
 Print warning level output with newline.
 
#define _PL(...)   LOG_PRINTLN(LOG_INFO, __VA_ARGS__)
 Print info level output with newline.
 
#define _PLD(...)   LOG_PRINTLN(LOG_DEBUG, __VA_ARGS__)
 Print debug level output with newline.
 

Detailed Description

Macro Definition Documentation

◆ _PL

#define _PL (   ...)    LOG_PRINTLN(LOG_INFO, __VA_ARGS__)

Print info level output with newline.

Definition at line 296 of file debug.h.

◆ _PLD

#define _PLD (   ...)    LOG_PRINTLN(LOG_DEBUG, __VA_ARGS__)

Print debug level output with newline.

Definition at line 298 of file debug.h.

◆ _PLE

#define _PLE (   ...)    LOG_PRINTLN(LOG_ERROR, __VA_ARGS__)

Print error level output with newline.

Definition at line 292 of file debug.h.

◆ _PLW

#define _PLW (   ...)    LOG_PRINTLN(LOG_WARN, __VA_ARGS__)

Print warning level output with newline.

Definition at line 294 of file debug.h.

◆ _PP

#define _PP (   ...)    LOG_PRINT(LOG_INFO, __VA_ARGS__)

Print info level output without newline.

Definition at line 288 of file debug.h.

◆ _PPD

#define _PPD (   ...)    LOG_PRINT(LOG_DEBUG, __VA_ARGS__)

Print debug level output without newline.

Definition at line 290 of file debug.h.

◆ _PPE

#define _PPE (   ...)    LOG_PRINT(LOG_ERROR, __VA_ARGS__)

Print error level output without newline.

Definition at line 284 of file debug.h.

◆ _PPW

#define _PPW (   ...)    LOG_PRINT(LOG_WARN, __VA_ARGS__)

Print warning level output without newline.

Definition at line 286 of file debug.h.