mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-09 16:00:04 +08:00
14 lines
304 B
VimL
14 lines
304 B
VimL
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
|