aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
authorSebastien Douheret <sebastien.douheret@iot.bzh>2017-08-24 21:23:40 +0200
committerSebastien Douheret <sebastien.douheret@iot.bzh>2017-08-24 21:28:28 +0200
commit347bd1674bbf67ccb6209951a4bf8f2971715532 (patch)
treeb34495fe40d7cf6c0d08a5b9a6b977b3981f9496 /.vscode
parent2fed63ed0087df0c79f7f30f7f397611381bfccd (diff)
Redirect HTTP and Gin server logs into a file (xds-server-verbose.log).
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json19
1 files changed, 1 insertions, 18 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 3637b39..5583251 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -16,7 +16,7 @@
"args": ["-log", "debug", "-c", "config.json.in"],
"showLog": false
},
-{
+ {
"name": "XDS-Server local dev",
"type": "go",
"request": "launch",
@@ -31,23 +31,6 @@
},
"args": ["-log", "debug", "-c", "__config_local_dev.json"],
"showLog": false
- },
- {
- "name": "XDS-Server IN DOCKER",
- "type": "go",
- "request": "launch",
- "mode": "debug",
- "port": 22000,
- "host": "172.17.0.2",
- "remotePath": "/xds/src/github.com/iotbzh/xds-server/bin/xds-server",
- "program": "${workspaceRoot}",
- "env": {
- "GOPATH": "${workspaceRoot}/../../../..:${env:GOPATH}",
- "ROOT_DIR": "${workspaceRoot}/../../../.."
- },
- "args": [],
- "showLog": true
}
-
]
}