| 203 | * \return void |
| 204 | */ |
| 205 | template <class T, typename... Args> void error(uint8_t tag, T msg, Args... args) |
| 206 | { |
| 207 | #ifndef DISABLE_LOGGING |
| 208 | printLevel(tag, LOG_LEVEL_ERROR, msg, args...); |
| 209 | #endif |
| 210 | } |
| 211 | |
| 212 | /** |
| 213 | * Output a warning message. Output message contains |
nothing calls this directly
no test coverage detected