| 288 | * \return void |
| 289 | */ |
| 290 | template <class T, typename... Args> void debug(uint8_t tag, T msg, Args... args) |
| 291 | { |
| 292 | #ifndef DISABLE_LOGGING |
| 293 | printLevel(tag, LOG_LEVEL_DEBUG, msg, args...); |
| 294 | #endif |
| 295 | } |
| 296 | |
| 297 | /** |
| 298 | * Output a normal message. Output message contains |
nothing calls this directly
no test coverage detected