diff --git a/python3/vimspector/debug_session.py b/python3/vimspector/debug_session.py index 63d4c92..b7eae06 100644 --- a/python3/vimspector/debug_session.py +++ b/python3/vimspector/debug_session.py @@ -477,7 +477,9 @@ class DebugSession( object ): def OnFailure( self, reason, message ): - self._outputView.ServerEcho( reason ) + msg = "Request for '{}' failed: {}".format( message[ 'command' ], + reason ) + self._outputView.ServerEcho( msg ) def _Launch( self ): self._logger.debug( "LAUNCH!" )