| 1363 | } |
| 1364 | |
| 1365 | void NORETURN plugin_err(struct plugin *p, const char *fmt, ...) |
| 1366 | { |
| 1367 | va_list ap; |
| 1368 | |
| 1369 | va_start(ap, fmt); |
| 1370 | plugin_errv(p, fmt, ap); |
| 1371 | va_end(ap); |
| 1372 | } |
| 1373 | |
| 1374 | void plugin_log(struct plugin *p, enum log_level l, const char *fmt, ...) |
| 1375 | { |
no test coverage detected