1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-12 17:55:41 +08:00

14 lines
304 B
VimL
Raw Normal View History

let s:LOGGER = SpaceVim#logger#derive('bookmark')
function! bookmarks#logger#info(msg) abort
call s:LOGGER.info(a:msg)
endfunction
function! bookmarks#logger#debug(msg) abort
call s:LOGGER.debug(a:msg)
endfunction
function! bookmarks#logger#warn(msg) abort
call s:LOGGER.warn(a:msg)
endfunction