Fix logfile setting
[src/xds/xds-agent.git] / .vscode / launch.json
1 {
2     "version": "0.2.0",
3     "configurations": [{
4             "name": "XDS-Agent",
5             "type": "go",
6             "request": "launch",
7             "mode": "debug",
8             "remotePath": "",
9             "port": 2345,
10             "host": "127.0.0.1",
11             "program": "${workspaceRoot}",
12             "env": {
13                 "GOPATH": "${workspaceRoot}/../../../../../..:${env:GOPATH}",
14                 "WORKSPACE_ROOT": "${workspaceRoot}",
15                 "XDS_DEBUG_MODE": "1",
16                 "XDS_LOG_SILLY": "0",
17             },
18             "args": ["-log", "debug", "-c", "__agent-config_local_dev.json"],
19             "showLog": false
20         }
21     ]
22 }