1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-04-14 15:19:12 +08:00

perf(log): use debug log for guide statusline

This commit is contained in:
wsdjeg 2023-04-22 22:29:03 +08:00
parent ce69cb81a4
commit 8091388658

View File

@ -606,10 +606,10 @@ if s:SL.support_float()
\ [s:guide_help_msg(0), 'LeaderGuiderFill'],
\ [repeat(' ', 999), 'LeaderGuiderFill'],
\ ])
call SpaceVim#logger#info('key binding guide float statusline winid:' . winid)
call SpaceVim#logger#debug('key binding guide float statusline winid:' . winid)
endfunction
function! s:close_float_statusline() abort
call SpaceVim#logger#info('close float statusline winid:' . s:SL.__winid)
call SpaceVim#logger#debug('close float statusline winid:' . s:SL.__winid)
call s:SL.close_float()
endfunction
else