mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-25 03:02:21 +08:00
17 lines
275 B
VimL
17 lines
275 B
VimL
let s:LOGGER =SpaceVim#logger#derive('vim-chat')
|
|
|
|
function! chat#logger#info(msg)
|
|
call s:LOGGER.info(a:msg)
|
|
endfunction
|
|
|
|
function! chat#logger#error(msg)
|
|
call s:LOGGER.error(a:msg)
|
|
endfunction
|
|
|
|
function! chat#logger#warn(msg)
|
|
|
|
call s:LOGGER.warn(a:msg)
|
|
|
|
endfunction
|
|
|