| 201 | void log_diag(const char* text) { log_write(log_diagnostic, text); } |
| 202 | void log_info(const char* text) { log_write(log_inform, text); } |
| 203 | void log_warn(const char* text) { log_write(log_warning, text); } |
| 204 | void log_err (const char* text) { log_write(log_error, text); } |
| 205 | void log_diagf(const char* text, ...) { |
| 206 | va_list args; |
no test coverage detected