Skip to content

Commit dc3fc78

Browse files
committed
Remove trailing characters
1 parent a6a5205 commit dc3fc78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/OmniSharp/log.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function! OmniSharp#log#LogServer(job, raw, msg) abort
3636
endif
3737
" The server sends the full content of the buffer. Don't log it.
3838
let prefix = s:LogLevelPrefix(a:msg.Body.LogLevel)
39-
let lines = [printf('[%s]: %s\n', prefix, a:msg.Body.Name), line0]
39+
let lines = [printf('[%s]: %s', prefix, a:msg.Body.Name), line0]
4040
call writefile(lines, a:job.logfile, 'a')
4141
elseif g:OmniSharp_loglevel ==# 'DEBUG' && lines[0] =~# '^\*\{12\}'
4242
" Special loglevel - DEBUG all caps. This still tells the server to pass

0 commit comments

Comments
 (0)