aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
blob: 69944df45b4f5dea0cde94acb257931b3652f499 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
    "version": "0.2.0",
    "configurations": [{
            "name": "XDS-Agent",
            "type": "go",
            "request": "launch",
            "mode": "debug",
            "remotePath": "",
            "port": 2345,
            "host": "127.0.0.1",
            "program": "${workspaceRoot}",
            "env": {
                "GOPATH": "${workspaceRoot}/../../../..:${env:GOPATH}",
                "WORKSPACE_ROOT": "${workspaceRoot}",
                "XDS_DEBUG_MODE": "1",
                "XDS_LOG_SILLY": "0",
                "ROOT_DIR": "${workspaceRoot}/../../../.."
            },
            "args": ["-log", "debug", "-c", "__agent-config_local_dev.json"],
            "showLog": false
        }
    ]
}