diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-06-16 15:12:39 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-06-16 15:12:39 +0000 |
commit | aed4276f4f1d4750812ac221891472c5ced71285 (patch) | |
tree | ad25cca52ee8072094b485654f61a2acd4f1f2cd /usr.bin/tmux/cmd-queue.c | |
parent | 726facb0ec948c6a09f86529ad67757e3fe6463a (diff) |
Tweak some logging.
Diffstat (limited to 'usr.bin/tmux/cmd-queue.c')
-rw-r--r-- | usr.bin/tmux/cmd-queue.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/cmd-queue.c b/usr.bin/tmux/cmd-queue.c index 9b9e52c64e2..8770c516914 100644 --- a/usr.bin/tmux/cmd-queue.c +++ b/usr.bin/tmux/cmd-queue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-queue.c,v 1.56 2017/05/30 21:44:59 nicm Exp $ */ +/* $OpenBSD: cmd-queue.c,v 1.57 2017/06/16 15:12:38 nicm Exp $ */ /* * Copyright (c) 2013 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -453,6 +453,8 @@ cmdq_error(struct cmdq_item *item, const char *fmt, ...) msglen = xvasprintf(&msg, fmt, ap); va_end(ap); + log_debug("%s: %s", __func__, msg); + if (c == NULL) cfg_add_cause("%s:%u: %s", cmd->file, cmd->line, msg); else if (c->session == NULL || (c->flags & CLIENT_CONTROL)) { |