1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 05:50:06 +08:00
SpaceVim/bundle/xmake.vim/autoload/xmake/log.vim

19 lines
535 B
VimL
Raw Normal View History

2023-03-28 12:14:51 +08:00
"=============================================================================
" log.vim --- xmake logger
" Copyright (c) 2016-2023 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg@outlook.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:LOGGER = SpaceVim#logger#derive('xmake')
function! xmake#log#info(msg) abort
call s:LOGGER.info(a:msg)
endfunction
function! xmake#log#debug(msg) abort
call s:LOGGER.debug(a:msg)
endfunction