- Added RUST_LOG=trace to VSCode debug configurations for better debugging - Removed unused imports (uuid, Selectable, SelectableHelper) from bootstrap module - Simplified bot name handling by removing name formatting logic, using raw bot folder names - Renamed check_default_gbot to check_gbot for consistency - Improved logging format in drive monitor initialization - Fixed S3 bucket reference in bootstrap manager (removed 'templates/' prefix)
42 lines
1 KiB
JSON
42 lines
1 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug executable 'botserver'",
|
|
"cargo": {
|
|
"args": ["build", "--bin=botserver", "--package=botserver"],
|
|
"filter": {
|
|
"name": "botserver",
|
|
"kind": "bin"
|
|
}
|
|
},
|
|
"args": [],
|
|
"env": {
|
|
"RUST_LOG": "trace"
|
|
},
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug unit tests in executable 'botserver'",
|
|
"cargo": {
|
|
"args": ["test", "--no-run", "--bin=botserver", "--package=botserver"],
|
|
"filter": {
|
|
"name": "botserver",
|
|
"kind": "bin"
|
|
}
|
|
},
|
|
"args": [],
|
|
"env": {
|
|
"RUST_LOG": "trace"
|
|
},
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
]
|
|
}
|