- Remove comments from launch.json configuration - Simplify Redis key format in set_current_context_keyword by removing context_name - Remove unused /api/start endpoint and related session start logic - Change log level from info to trace for config sync messages - Add trace logging to drive_monitor module The changes focus on code cleanup and simplification, particularly around session handling and logging. The Redis key format was simplified as the context_name was deemed unnecessary for uniqueness.
39 lines
859 B
JSON
39 lines
859 B
JSON
{
|
|
"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": "info"
|
|
},
|
|
"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}"
|
|
}
|
|
]
|
|
}
|