| 220 | * \return void |
| 221 | */ |
| 222 | template <class T, typename... Args> void warning(uint8_t tag, T msg, Args... args) |
| 223 | { |
| 224 | #ifndef DISABLE_LOGGING |
| 225 | printLevel(tag, LOG_LEVEL_WARNING, msg, args...); |
| 226 | #endif |
| 227 | } |
| 228 | |
| 229 | /** |
| 230 | * Output a notice message. Output message contains |
nothing calls this directly
no test coverage detected