| 1852 | } |
| 1853 | |
| 1854 | void plugin_gossmap_logcb(struct plugin *plugin, |
| 1855 | enum log_level level, |
| 1856 | const char *fmt, |
| 1857 | ...) |
| 1858 | { |
| 1859 | va_list ap; |
| 1860 | |
| 1861 | va_start(ap, fmt); |
| 1862 | plugin_logv(plugin, level, fmt, ap); |
| 1863 | va_end(ap); |
| 1864 | } |
| 1865 | |
| 1866 | struct json_stream *plugin_notification_start_obs(const tal_t *ctx, |
| 1867 | const char *method) |
nothing calls this directly
no test coverage detected