| 237 | * \return void |
| 238 | */ |
| 239 | template <class T, typename... Args> void notice(uint8_t tag, T msg, Args... args) |
| 240 | { |
| 241 | #ifndef DISABLE_LOGGING |
| 242 | printLevel(tag, LOG_LEVEL_NOTICE, msg, args...); |
| 243 | #endif |
| 244 | } |
| 245 | |
| 246 | /** |
| 247 | * Output a trace message. Output message contains |
nothing calls this directly
no test coverage detected