mirror of
https://github.com/wader/fq.git
synced 2024-11-29 12:14:17 +03:00
c5f6809b02
This preserves the callstack on non-recoverable panics so that using a debugger and fuzzing is much easier. Add vscode debug config. Remove fuzz stacktrace log workaround.
21 lines
443 B
JSON
21 lines
443 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug fq",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"showLog": true,
|
|
"program": ".",
|
|
"cwd": "${workspaceFolder}",
|
|
"env": {},
|
|
"args": [
|
|
"-d",
|
|
"mp4",
|
|
".",
|
|
"file"
|
|
],
|
|
}
|
|
]
|
|
} |