1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 14:50:04 +08:00

Chenage logger verbose

This commit is contained in:
wsdjeg 2017-12-22 21:28:45 +08:00
parent 2538c53658
commit 167d1b0c55

View File

@ -3,22 +3,22 @@ let s:LOGGER = SpaceVim#api#import('logger')
call s:LOGGER.set_name('SpaceVim') call s:LOGGER.set_name('SpaceVim')
call s:LOGGER.set_level(1) call s:LOGGER.set_level(1)
call s:LOGGER.set_silent(0) call s:LOGGER.set_silent(0)
call s:LOGGER.set_verbose(2) call s:LOGGER.set_verbose(1)
function! SpaceVim#logger#info(msg) function! SpaceVim#logger#info(msg) abort
call s:LOGGER.info(a:msg) call s:LOGGER.info(a:msg)
endfunction endfunction
function! SpaceVim#logger#warn(msg) function! SpaceVim#logger#warn(msg) abort
call s:LOGGER.warn(a:msg) call s:LOGGER.warn(a:msg)
endfunction endfunction
function! SpaceVim#logger#error(msg) function! SpaceVim#logger#error(msg) abort
call s:LOGGER.error(a:msg) call s:LOGGER.error(a:msg)