Open nik-kor opened 2 years ago
Hi.
Is there any log messages on the terminal window in the vscode ? or the phoityne.log file in the .vscode folder of your haskell project folder ?
In the launch.json, there is a "logLevel" property, could you set "DEBUG" level ?
Regards.
Hi @phoityne
Nothing except the line with Unexpected SIGPIPE
in Log(Window)
.
Here is the config I tried(only changed the logLevel as you suggested):
{
"type": "ghc",
"request": "launch",
"name": "haskell(stack)",
"internalConsoleOptions": "openOnSessionStart",
"workspace": "${workspaceFolder}",
"startup": "${workspaceFolder}/test/Spec.hs",
"startupFunc": "",
"startupArgs": "",
"stopOnEntry": false,
"mainArgs": "",
"ghciPrompt": "H>>= ",
"ghciInitialPrompt": "> ",
"ghciCmd": "stack ghci --test --no-load --no-build --main-is TARGET -fprint-evld-with-show",
"ghciEnv": {},
"logFile": "${workspaceFolder}/.vscode/phoityne.log",
"logLevel": "DEBUG",
"forceInspect": true
},
Hello!
I followed your install instructions and everything seems to be working but when I tried to "Start debugging", looks like nothing happens - no errors, but no visible feedback.
The only logs I could find was in
Log(Window)
saingSeems like debugger had never started but the IDE fails before with some unknown error.
Here is my environment: