Log stderr of adapters to dedicated files; improve spawn error messages#1405
Merged
mfussenegger merged 1 commit intomasterfrom Dec 24, 2024
Merged
Log stderr of adapters to dedicated files; improve spawn error messages#1405mfussenegger merged 1 commit intomasterfrom
mfussenegger merged 1 commit intomasterfrom
Conversation
2124ae2 to
e81fa79
Compare
e81fa79 to
8c98a0c
Compare
8c98a0c to
698d980
Compare
leoluz
pushed a commit
to leoluz/nvim-dap-go
that referenced
this pull request
Jan 14, 2025
nvim-dap had a change to log stdout/stderr of debug adapters to log files instead of redirecting it to the repl. (See mfussenegger/nvim-dap#1405) delve by default outputs print statements on stdout instead of using output events, which means they're no longer visible. Setting `outputMode = "remote"` in a configuration causes delve to use output events, which nvim-dap shows in the repl See also mfussenegger/nvim-dap#1407
|
Is this still an issue? Currently, I'm debugging ruby code with |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Note that delve users will need to set
outputMode = "remote",in their configurations to continue seeing the output of print statements in the repl. See #1407 (reply in thread)