Skip to content

Commit

Permalink
Merge pull request #851 from nickspoons/start-server-with-min-loglevel
Browse files Browse the repository at this point in the history
Start the server with at least minimal logging
  • Loading branch information
nickspoons authored Oct 11, 2023
2 parents cc61169 + 351dcb0 commit 504c54e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/OmniSharp/util.vim
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ function! OmniSharp#util#GetStartCmd(solution_file) abort
endif
let command += ['-s', solution_path]

if g:OmniSharp_loglevel !=? 'info'
if g:OmniSharp_loglevel !=? 'info' && g:OmniSharp_loglevel !=? 'none'
let command += ['-l', g:OmniSharp_loglevel]
endif

Expand Down

0 comments on commit 504c54e

Please sign in to comment.