( response )
| 39 | |
| 40 | |
| 41 | def FormatDebugInfoResponse( response ): |
| 42 | if not response: |
| 43 | return 'Server errored, no debug info from server\n' |
| 44 | message = _FormatYcmdDebugInfo( response ) |
| 45 | completer = response[ 'completer' ] |
| 46 | if completer: |
| 47 | message += _FormatCompleterDebugInfo( completer ) |
| 48 | return message |
| 49 | |
| 50 | |
| 51 | def _FormatYcmdDebugInfo( ycmd ): |