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

Function log_

lightningd/log.c:720–730  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

718}
719
720void log_(struct logger *log, enum log_level level,
721 const struct node_id *node_id,
722 bool call_notifier,
723 const char *fmt, ...)
724{
725 va_list ap;
726
727 va_start(ap, fmt);
728 logv(log, level, node_id, call_notifier, fmt, ap);
729 va_end(ap);
730}
731
732#define log_each_line(log_book, func, arg) \
733 log_each_line_((log_book), \

Callers 9

channel_disconnectFunction · 0.70
plugin_killFunction · 0.70
plugin_log_handleFunction · 0.70
log_status_msgFunction · 0.70
json_sendcustommsgFunction · 0.70
command_logFunction · 0.70

Calls 1

logvFunction · 0.70

Tested by

no test coverage detected