You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This makes debugging challenging as users miss out on the Debug Console's advantages such as filtering options and integration with the LLDB debugger. The delayed output for macOS apps particularly impacts the debugging workflow, as developers can't see logs until after the debugging session ends.
Current Behavior
iOS apps: Output appears in VS Code's terminal in real-time
macOS apps: Output is buffered and only appears in the terminal after the app terminates
Launch configuration doesn't support console output configuration:
{
"version": "0.2.0",
"configurations": [
{
"type": "sweetpad-lldb",
"request": "launch",
"name": "Attach to running app (SweetPad)",
"preLaunchTask": "sweetpad: launch",
// "console": "internalConsole" - currently not supported
},
],
}
Proposed Solution
Redirect all app output to VS Code's Debug Console, including:
Currently, the SweetPad extension doesn't properly route app console output to VS Code's Debug Console:
"console": "internalConsole"
launch configuration option is not supportedThis makes debugging challenging as users miss out on the Debug Console's advantages such as filtering options and integration with the LLDB debugger. The delayed output for macOS apps particularly impacts the debugging workflow, as developers can't see logs until after the debugging session ends.
Current Behavior
Proposed Solution
Redirect all app output to VS Code's Debug Console, including:
Support the standard VS Code debug console configuration:
Expected Behavior
Technical Considerations
Benefits
Better debugging experience:
Feature parity with Xcode:
Improved productivity:
The text was updated successfully, but these errors were encountered: