diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-09-18 23:26:03 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-09-19 01:11:09 +0200 |
commit | 7c00b9efcafa9046f8226ce4650f1b9ad67243c9 (patch) | |
tree | 86725e120b2e906a0c4a64b2a2a7bf2c26a7666f /src/nvim/os_unix.c | |
parent | b9bcfa9bc817aac07da266e12afb335f0b2b1737 (diff) | |
download | rneovim-7c00b9efcafa9046f8226ce4650f1b9ad67243c9.tar.gz rneovim-7c00b9efcafa9046f8226ce4650f1b9ad67243c9.tar.bz2 rneovim-7c00b9efcafa9046f8226ce4650f1b9ad67243c9.zip |
log: RPC, input, other events
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r-- | src/nvim/os_unix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index bd8a13e6c8..27660712da 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -153,6 +153,7 @@ void mch_exit(int r) free_all_mem(); #endif + ILOG("Nvim exit: %d", r); exit(r); } |