Commit 046dfc60 authored by David Auer's avatar David Auer
Browse files

VSCODE: Hold client at all exceptions and loglevel

parent 368bbd09
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@
            "request": "launch",
            "program": "${workspaceFolder}/build/src/client_debug_helper/client_debug_helper",
            "args": [],
            "stopAtEntry": false,
            "stopAtEntry": true,
            "cwd": "${workspaceFolder}",
            "environment": [
                {
@@ -96,7 +96,7 @@
                },
                {
                    "name": "LIBGKFS_LOG",
                    "value": "info"
                    "value": "all"
                }, //most
                {
                    "name": "LIBGKFS_HOSTS_FILE",
@@ -114,6 +114,11 @@
                    "description": "Enable pretty-printing for gdb",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                },
                {
                    "description": "Enable all-exceptions",
                    "text": "catch throw",
                    "ignoreFailures": true
                }
            ]
        },