Improve debug configuration. Add debug binary to .gitignore (#183)

Signed-off-by: Oleksandr Andriienko <oandriie@redhat.com>
pull/181/head
Oleksandr Andriienko 2020-03-04 10:30:42 +02:00 committed by GitHub
parent d416857421
commit d2585b655f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

1
.gitignore vendored
View File

@ -80,6 +80,7 @@ anaconda-mode/
*.dll
*.so
*.dylib
cmd/manager/__debug_bin
# Test binary, build with 'go test -c'
*.test

8
.vscode/launch.json vendored
View File

@ -2,6 +2,14 @@
"version": "0.2.0",
"configurations": [
{
"useApiV1": false,
"dlvLoadConfig": {
"followPointers": true,
"maxVariableRecurse": 1,
"maxStringLen": 3000,
"maxArrayValues": 100,
"maxStructFields": -1
},
"name": "Che Operator",
"type": "go",
"request": "launch",