| 186 | * \return void |
| 187 | */ |
| 188 | template <class T, typename... Args> void fatal(uint8_t tag, T msg, Args... args) |
| 189 | { |
| 190 | #ifndef DISABLE_LOGGING |
| 191 | printLevel(tag, LOG_LEVEL_FATAL, msg, args...); |
| 192 | #endif |
| 193 | } |
| 194 | |
| 195 | /** |
| 196 | * Output an error message. Output message contains |
nothing calls this directly
no test coverage detected