| 2279 | } |
| 2280 | |
| 2281 | static void connectd_logcb(struct daemon *daemon, |
| 2282 | enum log_level level, |
| 2283 | const char *fmt, |
| 2284 | ...) |
| 2285 | { |
| 2286 | va_list ap; |
| 2287 | |
| 2288 | va_start(ap, fmt); |
| 2289 | status_vfmt(level, NULL, fmt, ap); |
| 2290 | va_end(ap); |
| 2291 | } |
| 2292 | |
| 2293 | /* This is called once we need it: otherwise, the gossip_store may not exist, |
| 2294 | * since we start at the same time as gossipd itself. */ |
nothing calls this directly
no test coverage detected