| 254 | * \return void |
| 255 | */ |
| 256 | template <class T, typename... Args> void trace(uint8_t tag, T msg, Args... args) |
| 257 | { |
| 258 | #ifndef DISABLE_LOGGING |
| 259 | printLevel(tag, LOG_LEVEL_TRACE, msg, args...); |
| 260 | #endif |
| 261 | } |
| 262 | |
| 263 | /** |
| 264 | * Output a verbose message. Output message contains |
nothing calls this directly
no test coverage detected