aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/cursor_shape.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-05-30 02:03:08 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-06-07 00:26:21 +0200
commitfe1af9c2bc020cdb9e1e86e1f16d6060246f957a (patch)
treef4d6e1e2b675eee3a92a1714e5d182e9a1daf044 /src/nvim/cursor_shape.c
parent698ec9eb6e97ce9038e5f95a3208b7a0ac8da805 (diff)
downloadrneovim-fe1af9c2bc020cdb9e1e86e1f16d6060246f957a.tar.gz
rneovim-fe1af9c2bc020cdb9e1e86e1f16d6060246f957a.tar.bz2
rneovim-fe1af9c2bc020cdb9e1e86e1f16d6060246f957a.zip
log: Always enable; remove DISABLE_LOG
- Establish ERROR log level as "critical". Such errors are rare and will be valuable when users encounter unusual circumstances. - Set -DMIN_LOG_LEVEL=3 for release-type builds
Diffstat (limited to 'src/nvim/cursor_shape.c')
-rw-r--r--src/nvim/cursor_shape.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/cursor_shape.c b/src/nvim/cursor_shape.c
index e302d5aa4c..97fc3a3ca3 100644
--- a/src/nvim/cursor_shape.c
+++ b/src/nvim/cursor_shape.c
@@ -260,7 +260,7 @@ int cursor_mode_str2int(const char *mode)
return current_mode;
}
}
- ELOG("Unknown mode %s", mode);
+ WLOG("Unknown mode %s", mode);
return -1;
}