Replies: 3 comments 3 replies
-
"terminal": "console" in launch.json will redirect stdout and stderr to the debug console. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Interesting. I added that, but the tree of messages in the console only
shows that the process was launched when I press F5. Am I missing
something else?
|
Beta Was this translation helpful? Give feedback.
2 replies
-
Windows:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi folks,
I'm a blind screen reader user. Often I find myself needing to both debug programs traditionally, and scan through lots of log output on stdout/stderr. My typical approach for the latter is to redirect stdio to a log, open that log in a separate buffer, and search for what I'm interested in. Unfortunately, that has a few down sides:
Apparently there was once an "outputCapture":
"std"
launch.json parameter that redirected stdio to the debug console. I've been using the debug console for Flutter and other environments, and it has some nice advantages for reading logs as a screen reader user:Would it be possible to add a debug console redirection option to the existing stdio redirect options? Or does a method for this already exist? I scanned the manual but nothing jumped out at me.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions