Skip to content

Commit

Permalink
lightningd/log: Improve logging to handle multi-line messages
Browse files Browse the repository at this point in the history
Changelog-Added: Improved logging format in `lightningd/log` to handle multi-line messages by unescaping '\n' and logging each line separately.
Signed-off-by: Nishant Bansal <[email protected]>
  • Loading branch information
NishantBansal2003 committed Dec 16, 2024
1 parent 7be96ae commit 70e99c1
Showing 1 changed file with 21 additions and 9 deletions.
30 changes: 21 additions & 9 deletions lightningd/log.c
Original file line number Diff line number Diff line change
Expand Up @@ -564,27 +564,39 @@ void logv(struct logger *log, enum log_level level,
{
int save_errno = errno;
struct log_entry *l = new_log_entry(log, level, node_id);
char *log_msg = NULL;

/* This is WARN_UNUSED_RESULT, because everyone should somehow deal
* with OOM, even though nobody does. */
if (vasprintf(&l->log, fmt, ap) == -1)
if (vasprintf(&log_msg, fmt, ap) == -1)
abort();

size_t log_len = strlen(l->log);
char **lines = tal_strsplit(
log, json_escape_unescape(log, (struct json_escape *)log_msg), "\n",
STR_NO_EMPTY);

/* Sanitize any non-printable characters, and replace with '?' */
for (size_t i=0; i<log_len; i++)
if (l->log[i] < ' ' || l->log[i] >= 0x7f)
l->log[i] = '?';
/* Split to lines and log them separately. */
for (size_t j = 0; lines[j]; j++) {
l->log = tal_strdup(log, lines[j]);

maybe_print(log, l);
maybe_notify_log(log, l);
/* Sanitize any non-printable characters, and replace with '?'
*/
size_t line_len = strlen(l->log);
for (size_t i = 0; i < line_len; i++)
if (l->log[i] < ' ' || l->log[i] >= 0x7f)
l->log[i] = '?';

add_entry(log, &l);
maybe_print(log, l);
maybe_notify_log(log, l);

add_entry(log, &l);
}

if (call_notifier)
notify_warning(log->log_book->ld, l);

tal_free(lines);
free(log_msg);
errno = save_errno;
}

Expand Down

0 comments on commit 70e99c1

Please sign in to comment.