overflow_probe_container_ge.../.vscode/launch.json

26 lines
742 B
JSON
Raw Normal View History

2017-12-15 08:53:18 +00:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Debug",
"request": "launch",
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopOnEntry": false,
"mainClass": "com.loafle.overflow.probe.container.Container",
"projectName": "probe_container_general",
2017-12-19 06:28:34 +00:00
"args": "/project/overFlow/probe/pid/general.pid"
2017-12-15 08:53:18 +00:00
},
{
"type": "java",
"name": "Debug (Attach)",
"request": "attach",
"hostName": "localhost",
"port": 0
}
]
}