| 304 | * \return void |
| 305 | */ |
| 306 | template <class T, typename... Args> void output(uint8_t tag, T msg, Args... args) |
| 307 | { |
| 308 | #ifndef DISABLE_LOGGING |
| 309 | printLevel(tag, LOG_LEVEL_OUTPUT, msg, args...); |
| 310 | #endif |
| 311 | } |
| 312 | |
| 313 | private: |
| 314 | void print(Print* logOutput, const char* format, va_list args); |
nothing calls this directly
no test coverage detected