72 lines
1.9 KiB
VimL
72 lines
1.9 KiB
VimL
if exists('g:autoloaded_copilot_log')
|
|
finish
|
|
endif
|
|
let g:autoloaded_copilot_log = 1
|
|
|
|
if !exists('s:log_file')
|
|
let s:log_file = tempname() . '-copilot.log'
|
|
try
|
|
call writefile([], s:log_file)
|
|
catch
|
|
endtry
|
|
endif
|
|
|
|
function! copilot#logger#File() abort
|
|
return s:log_file
|
|
endfunction
|
|
|
|
function! copilot#logger#Raw(level, message) abort
|
|
if $COPILOT_AGENT_VERBOSE !~# '^\%(1\|true\)$' && a:level < 1
|
|
return
|
|
endif
|
|
let lines = type(a:message) == v:t_list ? copy(a:message) : split(a:message, "\n", 1)
|
|
try
|
|
if !filewritable(s:log_file)
|
|
return
|
|
endif
|
|
call map(lines, { k, L -> type(L) == v:t_func ? call(L, []) : L })
|
|
call writefile(lines, s:log_file, 'a')
|
|
catch
|
|
endtry
|
|
endfunction
|
|
|
|
function! copilot#logger#Trace(...) abort
|
|
call copilot#logger#Raw(-1, a:000)
|
|
endfunction
|
|
|
|
function! copilot#logger#Debug(...) abort
|
|
call copilot#logger#Raw(0, a:000)
|
|
endfunction
|
|
|
|
function! copilot#logger#Info(...) abort
|
|
call copilot#logger#Raw(1, a:000)
|
|
endfunction
|
|
|
|
function! copilot#logger#Warn(...) abort
|
|
call copilot#logger#Raw(2, a:000)
|
|
endfunction
|
|
|
|
function! copilot#logger#Error(...) abort
|
|
call copilot#logger#Raw(3, a:000)
|
|
endfunction
|
|
|
|
function! copilot#logger#Exception() abort
|
|
if !empty(v:exception) && v:exception !=# 'Vim:Interrupt'
|
|
call copilot#logger#Error('Exception: ' . v:exception . ' @ ' . v:throwpoint)
|
|
let agent = copilot#RunningAgent()
|
|
if !empty(agent)
|
|
let stacklines = []
|
|
for frame in split(substitute(substitute(v:throwpoint, ', \S\+ \(\d\+\)$', '[\1]', ''), '^function ', '', ''), '\.\@<!\.\.\.\@!')
|
|
if frame =~# '[\/]'
|
|
call add(stacklines, '[redacted]')
|
|
else
|
|
call add(stacklines, substitute(frame, '^<SNR>\d\+_', '<SID>', ''))
|
|
endif
|
|
endfor
|
|
call agent.Request('telemetry/exception', {
|
|
\ 'origin': 'copilot.vim',
|
|
\ 'stacktrace': join([v:exception] + stacklines, "\n")
|
|
\ })
|
|
endif
|
|
endif
|
|
endfunction
|