Include extra data when getting the logs

Include the extra conf data to the debug info request when getting the
logfiles.
This commit is contained in:
micbou 2018-09-19 21:30:04 +02:00
parent 487b8ab2b4
commit 4524d4bfd1
No known key found for this signature in database
GPG Key ID: C7E8FD1F3BDA1E05

View File

@ -593,7 +593,9 @@ class YouCompleteMe( object ):
self._server_stdout,
self._server_stderr ]
debug_info = SendDebugInfoRequest()
extra_data = {}
self._AddExtraConfDataIfNeeded( extra_data )
debug_info = SendDebugInfoRequest( extra_data )
if debug_info:
completer = debug_info[ 'completer' ]
if completer: