| 271 | * \return void |
| 272 | */ |
| 273 | template <class T, typename... Args> void verbose(uint8_t tag, T msg, Args... args) |
| 274 | { |
| 275 | #ifndef DISABLE_LOGGING |
| 276 | printLevel(tag, LOG_LEVEL_VERBOSE, msg, args...); |
| 277 | #endif |
| 278 | } |
| 279 | |
| 280 | /** |
| 281 | * Output a debug message. Output message contains |
nothing calls this directly
no test coverage detected