From 455ae8a8b90de2ea4c292cf69bf4dbe24af67b55 Mon Sep 17 00:00:00 2001 From: jdhao Date: Sat, 23 Oct 2021 01:29:58 +0800 Subject: [PATCH] change default logging level --- core/globals.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/globals.vim b/core/globals.vim index e6d4665..430bc6a 100644 --- a/core/globals.vim +++ b/core/globals.vim @@ -4,7 +4,7 @@ let g:is_win = (has('win32') || has('win64')) ? v:true : v:false let g:is_linux = (has('unix') && !has('macunix')) ? v:true : v:false let g:is_mac = has('macunix') ? v:true : v:false -let g:logging_level = 'debug' +let g:logging_level = 'info' "}} "{{ Builtin variables