diff options
author | nicm <nicm> | 2019-03-20 07:30:05 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-03-20 07:30:05 +0000 |
commit | ed962e76129d499012bee92617620d3703245482 (patch) | |
tree | fe1d289b2494d76ef6a4315f3637ce0af2c44a69 /format-draw.c | |
parent | 458b87150b3fe989bb3d5d611f1d010a71839117 (diff) | |
download | rtmux-ed962e76129d499012bee92617620d3703245482.tar.gz rtmux-ed962e76129d499012bee92617620d3703245482.tar.bz2 rtmux-ed962e76129d499012bee92617620d3703245482.zip |
Include function name in logging.
Diffstat (limited to 'format-draw.c')
-rw-r--r-- | format-draw.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/format-draw.c b/format-draw.c index ed50236f..dd03435c 100644 --- a/format-draw.c +++ b/format-draw.c @@ -576,19 +576,21 @@ format_draw(struct screen_write_ctx *octx, const struct grid_cell *base, /* This is a style. Work out where the end is and parse it. */ end = format_skip(cp + 2, "]"); if (end == NULL) { - log_debug("no terminating ] at '%s'", cp + 2); + log_debug("%s: no terminating ] at '%s'", __func__, + cp + 2); TAILQ_FOREACH_SAFE(fr, &frs, entry, fr1) format_free_range(&frs, fr); goto out; } tmp = xstrndup(cp + 2, end - (cp + 2)); if (style_parse(&sy, base, tmp) != 0) { - log_debug("invalid style '%s'", tmp); + log_debug("%s: invalid style '%s'", __func__, tmp); free(tmp); cp = end + 1; continue; } - log_debug("style '%s' -> '%s'", tmp, style_tostring(&sy)); + log_debug("%s: style '%s' -> '%s'", __func__, tmp, + style_tostring(&sy)); free(tmp); /* Check the list state. */ @@ -706,7 +708,7 @@ format_draw(struct screen_write_ctx *octx, const struct grid_cell *base, log_debug("%s: width %s is %u", __func__, names[i], width[i]); } if (focus_start != -1 && focus_end != -1) - log_debug("focus is %d-%d", focus_start, focus_end); + log_debug("%s: focus %d-%d", __func__, focus_start, focus_end); TAILQ_FOREACH(fr, &frs, entry) { log_debug("%s: range %d|%u is %s %u-%u", __func__, fr->type, fr->argument, names[fr->index], fr->start, fr->end); |