summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/format.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2019-03-13 18:09:13 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2019-03-13 18:09:13 +0000
commit9ae2e7b2d70cfdded9801728206c44d5971380da (patch)
tree4fc95add9a929ff17096160e7080814e36a69870 /usr.bin/tmux/format.c
parent857b442d2b84fe7a15c05415eb0aa89af3fedfd0 (diff)
Tweak format_replace logging.
Diffstat (limited to 'usr.bin/tmux/format.c')
-rw-r--r--usr.bin/tmux/format.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/tmux/format.c b/usr.bin/tmux/format.c
index 38887f4c797..ecea1637754 100644
--- a/usr.bin/tmux/format.c
+++ b/usr.bin/tmux/format.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: format.c,v 1.172 2019/03/13 15:37:28 nicm Exp $ */
+/* $OpenBSD: format.c,v 1.173 2019/03/13 18:09:12 nicm Exp $ */
/*
* Copyright (c) 2011 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -1256,6 +1256,7 @@ format_replace(struct format_tree *ft, const char *key, size_t keylen,
/* Make a copy of the key. */
copy = copy0 = xstrndup(key, keylen);
+ log_debug("%s: format = '%s'", __func__, copy);
/* Process modifier list. */
list = format_build_modifiers(ft, &copy, &count);
@@ -1322,7 +1323,6 @@ format_replace(struct format_tree *ft, const char *key, size_t keylen,
cmp = fm;
}
}
- log_debug("%s: remaining = '%s'", __func__, copy);
/* Is this a literal string? */
if (modifiers & FORMAT_LITERAL) {
@@ -1452,6 +1452,7 @@ done:
}
/* Expand the buffer and copy in the value. */
+ log_debug("%s: '%s' -> '%s'", __func__, copy0, value);
valuelen = strlen(value);
while (*len - *off < valuelen + 1) {
*buf = xreallocarray(*buf, 2, *len);