1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-19 17:23:43 +08:00
SpaceVim/bundle/bookmarks.vim/autoload/bookmarks/logger.vim

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