1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 06:50:05 +08:00
SpaceVim/bundle/vim-mail/autoload/mail/logger.vim
2021-10-23 16:32:42 +08:00

17 lines
275 B
VimL

let s:LOGGER =SpaceVim#logger#derive('vim-mail')
function! mail#logger#info(msg)
call s:LOGGER.info(a:msg)
endfunction
function! mail#logger#error(msg)
call s:LOGGER.error(a:msg)
endfunction
function! mail#logger#warn(msg)
call s:LOGGER.warn(a:msg)
endfunction