Skip to content

Commit

Permalink
fix: better defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
kristof-mattei committed Sep 1, 2023
1 parent 4d22e96 commit 0c8b4a7
Showing 1 changed file with 32 additions and 6 deletions.
38 changes: 32 additions & 6 deletions .vscode/launch.json
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@
"args": [],
"cwd": "${workspaceFolder}",
"env": {
"RUST_BACKTRACE": "full",
"RUST_LOG": "trace,rust_end_to_end_application=trace"
}
"RUST_BACKTRACE": "1",
"RUST_LOG": "debug,rust_end_to_end_application=trace"
},
"terminal": "console"
},
{
"type": "lldb",
Expand All @@ -45,9 +46,34 @@
"args": [],
"cwd": "${workspaceFolder}",
"env": {
"RUST_BACKTRACE": "full",
"RUST_LOG": "trace,rust_end_to_end_application=trace"
}
"RUST_BACKTRACE": "1",
"RUST_LOG": "debug,rust_end_to_end_application=trace"
},
"terminal": "console"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug integration test 'integration_tests'",
"cargo": {
"args": [
"test",
"--no-run",
"--test=integration_tests",
"--package=rust-end-to-end-application"
],
"filter": {
"name": "integration_tests",
"kind": "test"
}
},
"args": [],
"cwd": "${workspaceFolder}",
"env": {
"RUST_BACKTRACE": "1",
"RUST_LOG": "debug,rust_end_to_end_application=trace"
},
"terminal": "console"
}
]
}

0 comments on commit 0c8b4a7

Please sign in to comment.