forked from github/copilot.vim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogger.vim
More file actions
56 lines (47 loc) · 1.14 KB
/
Copy pathlogger.vim
File metadata and controls
56 lines (47 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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! s:Write(lines) abort
let lines = copy(a:lines)
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
if $COPILOT_AGENT_VERBOSE =~# '^\%(1\|true\)$'
call s:Write(a:000)
endif
endfunction
function! copilot#logger#Debug(...) abort
call s:Write(a:000)
endfunction
function! copilot#logger#Info(...) abort
call s:Write(a:000)
endfunction
function! copilot#logger#Warn(...) abort
call s:Write(a:000)
endfunction
function! copilot#logger#Error(...) abort
call s:Write(a:000)
endfunction
function! copilot#logger#Exception() abort
if !empty(v:exception)
call copilot#logger#Error('Exception: ' . v:exception . ' @ ' . v:throwpoint)
endif
endfunction