MCPcopy Create free account
hub / github.com/ElementsProject/lightning / log_

Function log_

lightningd/log.c:486–496  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

484}
485
486void log_(struct log *log, enum log_level level,
487 const struct node_id *node_id,
488 bool call_notifier,
489 const char *fmt, ...)
490{
491 va_list ap;
492
493 va_start(ap, fmt);
494 logv(log, level, node_id, call_notifier, fmt, ap);
495 va_end(ap);
496}
497
498#define log_each_line(lr, func, arg) \
499 log_each_line_((lr), \

Callers 5

channel_disconnectFunction · 0.70
plugin_killFunction · 0.70
plugin_log_handleFunction · 0.70
log_status_msgFunction · 0.70

Calls 1

logvFunction · 0.85

Tested by

no test coverage detected