summaryrefslogtreecommitdiffstats
path: root/src/channel.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-09-27 23:12:45 +0200
committerBram Moolenaar <Bram@vim.org>2019-09-27 23:12:45 +0200
commit2e47cab715669bd0c89762217cbf77bd70cd82ac (patch)
tree6335ef959011ee001155fe6e04a2337147a8cd75 /src/channel.c
parent7b666c7883c905a0e1428b8bfa7ba062af2656e7 (diff)
patch 8.1.2090: not clear why channel log file endsv8.1.2090
Problem: Not clear why channel log file ends. Solution: Add a "closing" line.
Diffstat (limited to 'src/channel.c')
-rw-r--r--src/channel.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/channel.c b/src/channel.c
index e42c9575f9..0ac9718762 100644
--- a/src/channel.c
+++ b/src/channel.c
@@ -141,7 +141,13 @@ ch_logfile(char_u *fname, char_u *opt)
FILE *file = NULL;
if (log_fd != NULL)
+ {
+ if (*fname != NUL)
+ ch_log(NULL, "closing, opening %s", fname);
+ else
+ ch_log(NULL, "closing");
fclose(log_fd);
+ }
if (*fname != NUL)
{