| 190 | /////////////////////////////////////////// |
| 191 | |
| 192 | void log_writef(log_ level, const char *text, ...) { |
| 193 | va_list args; |
| 194 | va_start(args, text); |
| 195 | _log_writef(level, text, args); |
| 196 | va_end(args); |
| 197 | } |
| 198 | |
| 199 | /////////////////////////////////////////// |
| 200 |
no test coverage detected