microsoft / microsoft/vscode-cpptools

Debug session silently terminates when trying to show local variable at break point

オープン
#7,708 コメント 2 件 リアクション 0 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

debugger more info needed
主要言語
TypeScript
スター
6.2k
フォーク
1.7k
平均マージ
14時間 46分
マージ済み PR(30日)
61

説明

Bug type: Debugger

Describe the bug

  • OS and Version: Windows 10, 20H2 19042.1052
  • VS Code Version: 1.57.0, system setup
  • C/C++ Extension Version: 1.4.1
  • Other extensions you installed (and if the issue persists after disabling them): cmake-tools, clangd, clang-format, code spell checker, vscodevim, jupyter, pylance, cmake, Bookmarks
  • A clear and concise description of what the bug is: debug session terminates at a certain function, when you "expand" the "VARIABLES" section in the debugging panel, or enter the local variable name in the debug console.

To Reproduce
Steps to reproduce the behavior:

  1. For my specific doctest test case, put a break point.
  2. F5, start debug
  3. Break point is hit.
  4. On the top left, the debugging panel, the "VARIABLES" section, if it's already expanded, it will try to list the local variables, but it just shows a red "Canceled" message and immediately, the entire debug session terminates. (The top bar of continue/step over/step in/step out" disappears, program running console window shows "press any key to continue...")

I use Ninja as CMake generator, the Visual Studio 2015 x64 toolchain (vc140).

Currently this only happens at that specific testing case (i.e. function), with a specific local variable ec, which is a custom error code object, consiting a uint32_t and a pointer to another object. If I keep the "VARIABLES" section collapsed, when break point is hit, and then enter the local variable name "ec" at the debugging console, the console would print red text "Canceled" and debug session silently terminates. I found this culprit local variable by keeping the "VARIABLES" section collapsed, and when break point is hit, I enter the local variables one by one to the "WATCH" section, and when "ec" is entered, the problem is observed.

The same code runs and debugs OK on Visual Studio 2015.
Doing the same setup on VS Code on Mac OS has no problem (build environment is AppleClang + Ninja though).

GIF:

GIF demo

GIF demo

launch.json

    // 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": [
        {
            "name": "(Windows) Launch",
            "type": "cppvsdbg",
            // "MIMode": "lldb",
            "request": "launch",
            "program": "${command:cmake.launchTargetPath}",
            "args": ["-ns", "-tc=UT.data.access.general"],
            // "args": ["-ns", "-tc=FT.data_access.lookupTileIds"],
            "stopAtEntry": false,
            // "cwd": "${fileDirname}",
            "cwd": "${workspaceFolder}/build/vscode-win64-vs14",
            "environment": [
                // {"name": "MAP_CONTENT_TEST_CONFIG", "value": "D:/work/test/unit_test/MapContentTest.txt"},
            ],
            "console": "externalTerminal",
            // "console": "internalConsole",
            "internalConsoleOptions": "openOnSessionStart",

"logging": {
    "engineLogging": true,
    "trace": true,
    "traceResponse": true
}

        }
    ]
}

Additional context

Logging with some text intentionally "<DELETED>".

<- (E) {"seq":3,"type":"event","event":"output","body":{"category":"console","output":"-------------------------------------------------------------------\nYou may only use the C/C++ Extension for Visual Studio Code\nwith Visual Studio Code, Visual Studio or Visual Studio for Mac\nsoftware to help you develop and test your applications.\n-------------------------------------------------------------------\n","severity":"ok"}}
-------------------------------------------------------------------
You may only use the C/C++ Extension for Visual Studio Code
with Visual Studio Code, Visual Studio or Visual Studio for Mac
software to help you develop and test your applications.
-------------------------------------------------------------------
<- (R) {"seq":5,"type":"response","request_seq":2,"success":true,"command":"launch"}
-> (C) {"type":"response","seq":1,"command":"handshake","request_seq":2,"success":true,"body":{"signature":"271nToUfUYK2ZbisFgtm50LQbkXGDQHS0iWrYrAXX02w58="}}
<- (E) {"seq":8,"type":"event","event":"initialized","body":{}}
-> (C) {"command":"setBreakpoints","arguments":{"source":{"name":"hd_map_data_access_impl.cpp","path":<DELETED>},"lines":[373],"breakpoints":[{"line":373}],"sourceModified":false},"type":"request","seq":3}
<- (R) {"seq":11,"type":"response","request_seq":3,"success":true,"command":"setBreakpoints","body":{"breakpoints":[{"id":1,"verified":false,"message":"The breakpoint is pending and will be resolved when debugging starts.","line":373}]}}
-> (C) {"command":"setFunctionBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":4}
<- (R) {"seq":14,"type":"response","request_seq":4,"success":true,"command":"setFunctionBreakpoints","body":{"breakpoints":[]}}
-> (C) {"command":"setExceptionBreakpoints","arguments":{"filters":[],"filterOptions":[]},"type":"request","seq":5}
<- (R) {"seq":17,"type":"response","request_seq":5,"success":true,"command":"setExceptionBreakpoints","body":{}}
-> (C) {"command":"configurationDone","type":"request","seq":6}
-> (C) {"seq":20,"type":"request","command":"runInTerminal","arguments":{"kind":"external","title":<DELETED>,"cwd":"","args":["c:\\Users\\zlxia\\.vscode\\extensions\\ms-vscode.cpptools-1.4.1\\debugAdapters\\vsdbg\\bin\\VsDebugConsole.exe","\\\\.\\pipe\\Microsoft-VisualStudio-Debug-Console-{F6B87E76-A1D6-4C21-A205-ACF4A95B5B68}","Local\\{F6B87E76-A1D6-4C21-A205-ACF4A95B5B68}","/AutoExit"]}}
-> (C) {"type":"response","seq":7,"command":"runInTerminal","request_seq":20,"success":true,"body":{}}
<- (E) {"seq":23,"type":"event","event":"output","body":{"category":"telemetry","output":"VS/Diagnostics/Debugger/vsdbg/ProcessCreate","data":{"VS.Diagnostics.Debugger.vsdbg.OSFamily":"Windows","VS.Diagnostics.Debugger.vsdbg.Version":"17.0.10505.1 commit:601714b5d7cf57bb8584ce3ae41d1bededad2ba4","VS.Diagnostics.Debugger.vsdbg.WindowsVersion":"10.0.19042"}}}
<- (E) {"seq":25,"type":"event","event":"process","body":{"name":<DELETED>,"systemProcessId":3668,"startMethod":"launch","pointerSize":64}}
<- (E) {"seq":27,"type":"event","event":"breakpoint","body":{"reason":"changed","breakpoint":{"id":1,"verified":false,"message":"No symbols have been loaded for this document.","line":373}}}
<- (E) {"seq":29,"type":"event","event":"output","body":{"category":"telemetry","output":"VS/Diagnostics/Debugger/vsdbg/Launch","data":{"VS.Diagnostics.Debugger.vsdbg.OSFamily":"Windows","VS.Diagnostics.Debugger.vsdbg.Version":"17.0.10505.1 commit:601714b5d7cf57bb8584ce3ae41d1bededad2ba4","VS.Diagnostics.Debugger.vsdbg.VisualizerFileUsed":false,"VS.Diagnostics.Debugger.vsdbg.WindowsVersion":"10.0.19042","VS.Diagnostics.Debugger.vsdbg.Launch.Duration":297,"VS.Diagnostics.Debugger.vsdbg.TargetType":"Live","VS.Diagnostics.Debugger.vsdbg.AdapterId":"cppvsdbg","VS.Diagnostics.Debugger.vsdbg.SourceFileMappings":0}}}
<- (R) {"seq":31,"type":"response","request_seq":6,"success":true,"command":"configurationDone"}
<- (E) {"seq":33,"type":"event","event":"progressStart","body":{"progressId":"1","title":"Loading...","cancellable":true,"message":"Loading symbols for ut.exe","percentage":0}}
<- (E) {"seq":35,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ut.exe from: <DELETED>","percentage":0}}
-> (C) {"command":"threads","type":"request","seq":8}
<- (R) {"seq":38,"type":"response","request_seq":8,"success":true,"command":"threads","body":{"threads":[]}}
<- (E) {"seq":40,"type":"event","event":"output","body":{"category":"console","output":<DELETED>}}
Loaded 'ut.exe'. Symbols loaded.
<- (E) {"seq":42,"type":"event","event":"module","body":{"reason":"new","module":{"id":1000,"name":"ut.exe","path":<DELETED>,"isUserCode":true,"symbolStatus":"Symbols loaded.","symbolFilePath":"<DELETED>"}}}
<- (E) {"seq":44,"type":"event","event":"breakpoint","body":{"reason":"changed","breakpoint":{"id":1,"verified":true,"source":{"name":"hd_map_data_access_impl.cpp","path":<DELETED>,"sourceReference":0,"checksums":[{"algorithm":"MD5","checksum":"c880255aec42d8f6ee8f1210e092298b"}]},"line":373,"endLine":373,"instructionReference":"0x00007FF7CD39B97D","offset":0}}}
<- (E) {"seq":46,"type":"event","event":"thread","body":{"reason":"started","threadId":17588}}
<- (E) {"seq":48,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ntdll.dll","percentage":0}}
<- (E) {"seq":50,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ntdll.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":52,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ntdll.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":54,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ntdll.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":56,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ntdll.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":58,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ntdll.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":60,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\ntdll.dll'. \n"}}
Loaded 'C:\Windows\System32\ntdll.dll'.
<- (E) {"seq":62,"type":"event","event":"module","body":{"reason":"new","module":{"id":1001,"name":"ntdll.dll","path":"C:\\Windows\\System32\\ntdll.dll","isUserCode":false,"version":"10.0.19041.1023 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":64,"type":"event","event":"thread","body":{"reason":"started","threadId":8256}}
<- (E) {"seq":66,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for kernel32.dll","percentage":0}}
<- (E) {"seq":68,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for kernel32.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":70,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\kernel32.dll'. \n"}}
Loaded 'C:\Windows\System32\kernel32.dll'.
<- (E) {"seq":72,"type":"event","event":"module","body":{"reason":"new","module":{"id":1002,"name":"kernel32.dll","path":"C:\\Windows\\System32\\kernel32.dll","isUserCode":false,"version":"10.0.19041.1023 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":74,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for kernel32.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":76,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for kernel32.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":78,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for kernel32.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":80,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for kernel32.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":82,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for KernelBase.dll","percentage":0}}
<- (E) {"seq":84,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for KernelBase.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":86,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for KernelBase.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":88,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\KernelBase.dll'. \n"}}
<- (E) {"seq":90,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for KernelBase.dll from: C:\\Windows\\","percentage":0}}
Loaded 'C:\Windows\System32\KernelBase.dll'.
<- (E) {"seq":92,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for KernelBase.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":94,"type":"event","event":"module","body":{"reason":"new","module":{"id":1003,"name":"KernelBase.dll","path":"C:\\Windows\\System32\\KernelBase.dll","isUserCode":false,"version":"10.0.19041.1023 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":96,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for KernelBase.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":98,"type":"event","event":"thread","body":{"reason":"started","threadId":21612}}
<- (E) {"seq":100,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for advapi32.dll","percentage":0}}
<- (E) {"seq":102,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for advapi32.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":104,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\advapi32.dll'. \n"}}
Loaded 'C:\Windows\System32\advapi32.dll'.
<- (E) {"seq":106,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for advapi32.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":108,"type":"event","event":"module","body":{"reason":"new","module":{"id":1004,"name":"advapi32.dll","path":"C:\\Windows\\System32\\advapi32.dll","isUserCode":false,"version":"10.0.19041.1052 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":110,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for advapi32.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":112,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for advapi32.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":114,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for advapi32.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":116,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcrt.dll","percentage":0}}
<- (E) {"seq":118,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\msvcrt.dll'. \n"}}
<- (E) {"seq":120,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcrt.dll from: <DELETED>","percentage":0}}
Loaded 'C:\Windows\System32\msvcrt.dll'.
<- (E) {"seq":122,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcrt.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":124,"type":"event","event":"module","body":{"reason":"new","module":{"id":1005,"name":"msvcrt.dll","path":"C:\\Windows\\System32\\msvcrt.dll","isUserCode":false,"version":"7.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":126,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcrt.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":128,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcrt.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":130,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcrt.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":132,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sechost.dll","percentage":0}}
<- (E) {"seq":134,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sechost.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":136,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sechost.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":138,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\sechost.dll'. \n"}}
Loaded 'C:\Windows\System32\sechost.dll'.
<- (E) {"seq":140,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sechost.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":142,"type":"event","event":"module","body":{"reason":"new","module":{"id":1006,"name":"sechost.dll","path":"C:\\Windows\\System32\\sechost.dll","isUserCode":false,"version":"10.0.19041.906 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":144,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sechost.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":146,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sechost.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":148,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rpcrt4.dll","percentage":0}}
<- (E) {"seq":150,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rpcrt4.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":152,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\rpcrt4.dll'. \n"}}
<- (E) {"seq":154,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rpcrt4.dll from: C:\\Windows\\System32\\","percentage":0}}
Loaded 'C:\Windows\System32\rpcrt4.dll'.
<- (E) {"seq":156,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rpcrt4.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":158,"type":"event","event":"module","body":{"reason":"new","module":{"id":1007,"name":"rpcrt4.dll","path":"C:\\Windows\\System32\\rpcrt4.dll","isUserCode":false,"version":"10.0.19041.1052 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":160,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rpcrt4.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":162,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rpcrt4.dll from: C:\\Windows\\dll\\","percentage":0}}
Loaded 'xxx.dll'.
<- (E) {"seq":182,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for user32.dll","percentage":0}}
<- (E) {"seq":184,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for user32.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":186,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\user32.dll'. \n"}}
Loaded 'C:\Windows\System32\user32.dll'.
<- (E) {"seq":188,"type":"event","event":"module","body":{"reason":"new","module":{"id":1009,"name":"user32.dll","path":"C:\\Windows\\System32\\user32.dll","isUserCode":false,"version":"10.0.19041.906 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":190,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for user32.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":192,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for user32.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":194,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for user32.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":196,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for user32.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":198,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for win32u.dll","percentage":0}}
<- (E) {"seq":200,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for win32u.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":202,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\win32u.dll'. \n"}}
Loaded 'C:\Windows\System32\win32u.dll'.
<- (E) {"seq":204,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for win32u.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":206,"type":"event","event":"module","body":{"reason":"new","module":{"id":1010,"name":"win32u.dll","path":"C:\\Windows\\System32\\win32u.dll","isUserCode":false,"version":"10.0.19041.1052 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":208,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for win32u.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":210,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for win32u.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":212,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\gdi32.dll'. \n"}}
<- (E) {"seq":214,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for win32u.dll from: C:\\Windows\\dll\\","percentage":0}}
Loaded 'C:\Windows\System32\gdi32.dll'.
<- (E) {"seq":216,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32.dll","percentage":0}}
<- (E) {"seq":218,"type":"event","event":"module","body":{"reason":"new","module":{"id":1011,"name":"gdi32.dll","path":"C:\\Windows\\System32\\gdi32.dll","isUserCode":false,"version":"10.0.19041.746 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":220,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":222,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":224,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":226,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":228,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":230,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32full.dll","percentage":0}}
<- (E) {"seq":232,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32full.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":234,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\gdi32full.dll'. \n"}}
Loaded 'C:\Windows\System32\gdi32full.dll'.
<- (E) {"seq":236,"type":"event","event":"module","body":{"reason":"new","module":{"id":1012,"name":"gdi32full.dll","path":"C:\\Windows\\System32\\gdi32full.dll","isUserCode":false,"version":"10.0.19041.928 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":238,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32full.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":240,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32full.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":242,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32full.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":244,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32full.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":246,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp_win.dll","percentage":0}}
<- (E) {"seq":248,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp_win.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":250,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\msvcp_win.dll'. \n"}}
<- (E) {"seq":252,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp_win.dll from: C:\\Windows\\System32\\","percentage":0}}
Loaded 'C:\Windows\System32\msvcp_win.dll'.
<- (E) {"seq":254,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp_win.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":256,"type":"event","event":"module","body":{"reason":"new","module":{"id":1013,"name":"msvcp_win.dll","path":"C:\\Windows\\System32\\msvcp_win.dll","isUserCode":false,"version":"10.0.19041.789 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":258,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp_win.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":260,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp_win.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":262,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbase.dll","percentage":0}}
<- (E) {"seq":264,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbase.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":267,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbase.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":266,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\ucrtbase.dll'. \n"}}
<- (E) {"seq":270,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbase.dll from: C:\\Windows\\","percentage":0}}
Loaded 'C:\Windows\System32\ucrtbase.dll'.
<- (E) {"seq":272,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbase.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":274,"type":"event","event":"module","body":{"reason":"new","module":{"id":1014,"name":"ucrtbase.dll","path":"C:\\Windows\\System32\\ucrtbase.dll","isUserCode":false,"version":"10.0.19041.789 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":276,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbase.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":278,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ws2_32.dll","percentage":0}}
<- (E) {"seq":280,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ws2_32.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":282,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\ws2_32.dll'. \n"}}
Loaded 'C:\Windows\System32\ws2_32.dll'.
<- (E) {"seq":284,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ws2_32.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":286,"type":"event","event":"module","body":{"reason":"new","module":{"id":1015,"name":"ws2_32.dll","path":"C:\\Windows\\System32\\ws2_32.dll","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":288,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ws2_32.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":290,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ws2_32.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":292,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ws2_32.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":294,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for Wldap32.dll","percentage":0}}
<- (E) {"seq":296,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for Wldap32.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":298,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\Wldap32.dll'. \n"}}
Loaded 'C:\Windows\System32\Wldap32.dll'.
<- (E) {"seq":300,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for Wldap32.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":302,"type":"event","event":"module","body":{"reason":"new","module":{"id":1016,"name":"Wldap32.dll","path":"C:\\Windows\\System32\\Wldap32.dll","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":304,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for Wldap32.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":306,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for Wldap32.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":308,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for Wldap32.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":310,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for crypt32.dll","percentage":0}}
<- (E) {"seq":312,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for crypt32.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":314,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\crypt32.dll'. \n"}}
Loaded 'C:\Windows\System32\crypt32.dll'.
<- (E) {"seq":316,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for crypt32.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":318,"type":"event","event":"module","body":{"reason":"new","module":{"id":1017,"name":"crypt32.dll","path":"C:\\Windows\\System32\\crypt32.dll","isUserCode":false,"version":"10.0.19041.844 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":320,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for crypt32.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":322,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for crypt32.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":324,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for crypt32.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":326,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp140d.dll","percentage":0}}
<- (E) {"seq":328,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\msvcp140d.dll'. \n"}}
Loaded 'C:\Windows\System32\msvcp140d.dll'.
<- (E) {"seq":330,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp140d.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":332,"type":"event","event":"module","body":{"reason":"new","module":{"id":1018,"name":"msvcp140d.dll","path":"C:\\Windows\\System32\\msvcp140d.dll","isUserCode":false,"version":"14.00.24215.1 built by: VCTOOLSD14ULDR","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":334,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp140d.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":336,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp140d.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":338,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp140d.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":340,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp140d.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":342,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for vcruntime140d.dll","percentage":0}}
<- (E) {"seq":344,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for vcruntime140d.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":346,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\vcruntime140d.dll'. \n"}}
<- (E) {"seq":348,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for vcruntime140d.dll from: C:\\Windows\\System32\\","percentage":0}}
Loaded 'C:\Windows\System32\vcruntime140d.dll'.
<- (E) {"seq":350,"type":"event","event":"module","body":{"reason":"new","module":{"id":1019,"name":"vcruntime140d.dll","path":"C:\\Windows\\System32\\vcruntime140d.dll","isUserCode":false,"version":"14.00.24215.1 built by: VCTOOLSD14ULDR","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":352,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for vcruntime140d.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":354,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for vcruntime140d.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":356,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for vcruntime140d.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":358,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbased.dll","percentage":0}}
<- (E) {"seq":360,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbased.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":362,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\ucrtbased.dll'. \n"}}
<- (E) {"seq":364,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbased.dll from: C:\\Windows\\System32\\","percentage":0}}
Loaded 'C:\Windows\System32\ucrtbased.dll'.
<- (E) {"seq":366,"type":"event","event":"module","body":{"reason":"new","module":{"id":1020,"name":"ucrtbased.dll","path":"C:\\Windows\\System32\\ucrtbased.dll","isUserCode":false,"version":"10.0.10586.212 (th2_release_sec.160328-1908)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":367,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbased.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":370,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbased.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":372,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbased.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":374,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for IPHLPAPI.DLL","percentage":0}}
<- (E) {"seq":376,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for IPHLPAPI.DLL from: <DELETED>","percentage":0}}
<- (E) {"seq":378,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for IPHLPAPI.DLL from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":380,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\IPHLPAPI.DLL'. \n"}}
Loaded 'C:\Windows\System32\IPHLPAPI.DLL'.
<- (E) {"seq":382,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for IPHLPAPI.DLL from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":384,"type":"event","event":"module","body":{"reason":"new","module":{"id":1021,"name":"IPHLPAPI.DLL","path":"C:\\Windows\\System32\\IPHLPAPI.DLL","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":386,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for IPHLPAPI.DLL from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":388,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for IPHLPAPI.DLL from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":390,"type":"event","event":"thread","body":{"reason":"started","threadId":17500}}
<- (E) {"seq":392,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imm32.dll","percentage":0}}
<- (E) {"seq":394,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imm32.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":396,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\imm32.dll'. \n"}}
Loaded 'C:\Windows\System32\imm32.dll'.
<- (E) {"seq":398,"type":"event","event":"module","body":{"reason":"new","module":{"id":1022,"name":"imm32.dll","path":"C:\\Windows\\System32\\imm32.dll","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":400,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imm32.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":402,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imm32.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":404,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imm32.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":406,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imm32.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":408,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for secur32.dll","percentage":0}}
<- (E) {"seq":410,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\secur32.dll'. \n"}}
<- (E) {"seq":412,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for secur32.dll from: <DELETED>","percentage":0}}
Loaded 'C:\Windows\System32\secur32.dll'.
<- (E) {"seq":416,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for secur32.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":418,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for secur32.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":420,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for secur32.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":414,"type":"event","event":"module","body":{"reason":"new","module":{"id":1023,"name":"secur32.dll","path":"C:\\Windows\\System32\\secur32.dll","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":422,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for secur32.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":424,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sspicli.dll","percentage":0}}
<- (E) {"seq":426,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sspicli.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":428,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\sspicli.dll'. \n"}}
<- (E) {"seq":430,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sspicli.dll from: C:\\Windows\\System32\\","percentage":0}}
Loaded 'C:\Windows\System32\sspicli.dll'.
<- (E) {"seq":432,"type":"event","event":"module","body":{"reason":"new","module":{"id":1024,"name":"sspicli.dll","path":"C:\\Windows\\System32\\sspicli.dll","isUserCode":false,"version":"10.0.19041.906 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":434,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sspicli.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":436,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sspicli.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":438,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sspicli.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":440,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for cryptbase.dll","percentage":0}}
<- (E) {"seq":442,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for cryptbase.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":444,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\cryptbase.dll'. \n"}}
Loaded 'C:\Windows\System32\cryptbase.dll'.
<- (E) {"seq":446,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for cryptbase.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":448,"type":"event","event":"module","body":{"reason":"new","module":{"id":1025,"name":"cryptbase.dll","path":"C:\\Windows\\System32\\cryptbase.dll","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":450,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for cryptbase.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":452,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for cryptbase.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":454,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for cryptbase.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":456,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for mswsock.dll","percentage":0}}
<- (E) {"seq":458,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for mswsock.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":460,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\mswsock.dll'. \n"}}
Loaded 'C:\Windows\System32\mswsock.dll'.
<- (E) {"seq":462,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for mswsock.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":464,"type":"event","event":"module","body":{"reason":"new","module":{"id":1026,"name":"mswsock.dll","path":"C:\\Windows\\System32\\mswsock.dll","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":466,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for mswsock.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":468,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for mswsock.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":470,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for mswsock.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":472,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for nsi.dll","percentage":0}}
<- (E) {"seq":474,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for nsi.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":478,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for nsi.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":480,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for nsi.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":476,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\nsi.dll'. \n"}}
Loaded 'C:\Windows\System32\nsi.dll'.
<- (E) {"seq":484,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for nsi.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":482,"type":"event","event":"module","body":{"reason":"new","module":{"id":1027,"name":"nsi.dll","path":"C:\\Windows\\System32\\nsi.dll","isUserCode":false,"version":"10.0.19041.610 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":486,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for nsi.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":488,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dhcpcsvc6.dll","percentage":0}}
<- (E) {"seq":490,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dhcpcsvc6.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":494,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dhcpcsvc6.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":492,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\dhcpcsvc6.dll'. \n"}}
Loaded 'C:\Windows\System32\dhcpcsvc6.dll'.
<- (E) {"seq":496,"type":"event","event":"module","body":{"reason":"new","module":{"id":1028,"name":"dhcpcsvc6.dll","path":"C:\\Windows\\System32\\dhcpcsvc6.dll","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":498,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dhcpcsvc6.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":500,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dhcpcsvc6.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":502,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dhcpcsvc6.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":504,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dhcpcsvc.dll","percentage":0}}
<- (E) {"seq":506,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dhcpcsvc.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":508,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\dhcpcsvc.dll'. \n"}}
<- (E) {"seq":510,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dhcpcsvc.dll from: C:\\Windows\\System32\\","percentage":0}}
Loaded 'C:\Windows\System32\dhcpcsvc.dll'.
<- (E) {"seq":512,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dhcpcsvc.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":514,"type":"event","event":"module","body":{"reason":"new","module":{"id":1029,"name":"dhcpcsvc.dll","path":"C:\\Windows\\System32\\dhcpcsvc.dll","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":516,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dhcpcsvc.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":518,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dhcpcsvc.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":520,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dnsapi.dll","percentage":0}}
<- (E) {"seq":522,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dnsapi.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":524,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\dnsapi.dll'. \n"}}
<- (E) {"seq":526,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dnsapi.dll from: C:\\Windows\\System32\\","percentage":0}}
Loaded 'C:\Windows\System32\dnsapi.dll'.
<- (E) {"seq":528,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dnsapi.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":530,"type":"event","event":"module","body":{"reason":"new","module":{"id":1030,"name":"dnsapi.dll","path":"C:\\Windows\\System32\\dnsapi.dll","isUserCode":false,"version":"10.0.19041.1023 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":532,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dnsapi.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":534,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dnsapi.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":536,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for bcryptprimitives.dll","percentage":0}}
<- (E) {"seq":538,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for bcryptprimitives.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":540,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\bcryptprimitives.dll'. \n"}}
<- (E) {"seq":542,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for bcryptprimitives.dll from: C:\\Windows\\System32\\","percentage":0}}
Loaded 'C:\Windows\System32\bcryptprimitives.dll'.
<- (E) {"seq":544,"type":"event","event":"module","body":{"reason":"new","module":{"id":1031,"name":"bcryptprimitives.dll","path":"C:\\Windows\\System32\\bcryptprimitives.dll","isUserCode":false,"version":"10.0.19041.1023 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":546,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for bcryptprimitives.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":548,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for bcryptprimitives.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":550,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for bcryptprimitives.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":552,"type":"event","event":"thread","body":{"reason":"exited","threadId":8256}}
-> (C) {"command":"threads","type":"request","seq":9}
<- (R) {"seq":555,"type":"response","request_seq":9,"success":true,"command":"threads","body":{"threads":[{"id":17588,"name":"Thread #17588"},{"id":21612,"name":"Thread #21612"},{"id":17500,"name":"Thread #17500"}]}}
<- (E) {"seq":557,"type":"event","event":"output","body":{"category":"stdout","output":"[doctest] doctest version is \"2.4.6\"\n[doctest] run with \"--help\" for options\n"}}
[doctest] doctest version is "2.4.6"
[doctest] run with "--help" for options
<- (E) {"seq":559,"type":"event","event":"output","body":{"category":"stdout","output":"C:\\r\\workspace\\NavSDK\\foundation\\master\\win64-vs14\\foundation\\src\\resource\\resource_package_factory.cpp:26: ERROR 2021-06-17T12:26:39 17588 foundation 0.109: this filepath shouldn't be a folder: ./cache\n"}}
C:\r\workspace\NavSDK\foundation\master\win64-vs14\foundation\src\resource\resource_package_factory.cpp:26: ERROR 2021-06-17T12:26:39 17588 foundation 0.109: this filepath shouldn't be a folder: ./cache
<- (E) {"seq":561,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\common\settings.cpp:235: INFO 2021-06-17T12:26:39 17588 hdmc.common 0.125: readSetting key: hdmap.streaming_cloud_url, value: http://hqd-ssdpostgis-06.mypna.com:8080/
<- (E) {"seq":563,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\common\settings.cpp:235: INFO 2021-06-17T12:26:39 17588 hdmc.common 0.125: readSetting key: hdmap.streaming_cache_space_limit, value: 2147483648
<- (E) {"seq":565,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\common\settings.cpp:235: INFO 2021-06-17T12:26:39 17588 hdmc.common 0.125: readSetting key: hdmap.streaming_database_reader_count, value: 3
<- (E) {"seq":567,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\common\settings.cpp:225: INFO 2021-06-17T12:26:39 17588 hdmc.common 0.125: readSetting get setting failed: hdmap.streaming_regular_exclusion_count, default value: 0
<- (E) {"seq":569,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\common\settings.cpp:235: INFO 2021-06-17T12:26:39 17588 hdmc.common 0.125: readSetting key: hdmap.streaming_concurrent_download_count, value: 20
<- (E) {"seq":571,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\common\settings.cpp:235: INFO 2021-06-17T12:26:39 17588 hdmc.common 0.125: readSetting key: hdmap.streaming_large_file_download_count, value: 3
<- (E) {"seq":573,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\common\settings.cpp:235: INFO 2021-06-17T12:26:39 17588 hdmc.common 0.125: readSetting key: hdmap.streaming_home_area_download_count, value: 5
<- (E) {"seq":575,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\common\settings.cpp:225: INFO 2021-06-17T12:26:39 17588 hdmc.common 0.125: readSetting get setting failed: hdmap.streaming_prefetch_download_count, default value: 5
<- (E) {"seq":577,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\common\settings.cpp:235: INFO 2021-06-17T12:26:39 17588 hdmc.common 0.125: readSetting key: hdmap.streaming_version_refresh_interval, value: 30
<- (E) {"seq":579,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\common\settings.cpp:235: INFO 2021-06-17T12:26:39 17588 hdmc.common 0.125: readSetting key: hdmap.streaming_status_refresh_interval, value: 15
<- (E) {"seq":581,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\common\settings.cpp:235: INFO 2021-06-17T12:26:39 17588 hdmc.common 0.125: readSetting key: hdmap.streaming_network_speed_threshold, value: 30
<- (E) {"seq":583,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\common\settings.cpp:235: INFO 2021-06-17T12:26:39 17588 hdmc.common 0.125: readSetting key: hdmap.traffic_query_timeout, value: 10.2346
<- (E) {"seq":585,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\common\settings.cpp:235: INFO 2021-06-17T12:26:39 17588 hdmc.common 0.125: readSetting key: hdmap.mapcontent_enable_debug, value: 1
<- (E) {"seq":587,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for cryptsp.dll","percentage":0}}
<- (E) {"seq":589,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\cryptsp.dll'. \n"}}
<- (E) {"seq":591,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for cryptsp.dll from: <DELETED>","percentage":0}}
Loaded 'C:\Windows\System32\cryptsp.dll'.
<- (E) {"seq":593,"type":"event","event":"module","body":{"reason":"new","module":{"id":1032,"name":"cryptsp.dll","path":"C:\\Windows\\System32\\cryptsp.dll","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":595,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for cryptsp.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":597,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for cryptsp.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":599,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for cryptsp.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":601,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for cryptsp.dll from: C:\\Windows\\dll\\","percentage":0}}
<- (E) {"seq":603,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\rsaenh.dll'. \n"}}
<- (E) {"seq":605,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rsaenh.dll","percentage":0}}
Loaded 'C:\Windows\System32\rsaenh.dll'.
<- (E) {"seq":607,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rsaenh.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":609,"type":"event","event":"module","body":{"reason":"new","module":{"id":1033,"name":"rsaenh.dll","path":"C:\\Windows\\System32\\rsaenh.dll","isUserCode":false,"version":"10.0.19041.1052 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":611,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rsaenh.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":613,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rsaenh.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":615,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rsaenh.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<- (E) {"seq":617,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\bcrypt.dll'. \n"}}
<- (E) {"seq":619,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rsaenh.dll from: C:\\Windows\\dll\\","percentage":0}}
Loaded 'C:\Windows\System32\bcrypt.dll'.
<- (E) {"seq":621,"type":"event","event":"module","body":{"reason":"new","module":{"id":1034,"name":"bcrypt.dll","path":"C:\\Windows\\System32\\bcrypt.dll","isUserCode":false,"version":"10.0.19041.1023 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}}
<- (E) {"seq":623,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for bcrypt.dll","percentage":0}}
<- (E) {"seq":625,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for bcrypt.dll from: <DELETED>","percentage":0}}
<- (E) {"seq":627,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for bcrypt.dll from: C:\\Windows\\System32\\","percentage":0}}
<- (E) {"seq":629,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for bcrypt.dll from: C:\\Windows\\","percentage":0}}
<- (E) {"seq":631,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<- (E) {"seq":632,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for bcrypt.dll from: C:\\Windows\\symbols\\dll\\","percentage":0}}
<DELETED>\src\streaming\download_manager.cpp:131: INFO 2021-06-17T12:26:39 17588 hdmc.streaming 0.125: DownloadManager DownloadManager created
<- (E) {"seq":635,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<- (E) {"seq":637,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for bcrypt.dll from: C:\\Windows\\dll\\","percentage":0}}
<DELETED>\src\streaming\download_manager.cpp:132: INFO 2021-06-17T12:26:39 17588 hdmc.streaming 0.125: DownloadManager URL: http://hqd-ssdpostgis-06.mypna.com:8080
<- (E) {"seq":639,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\streaming\download_manager.cpp:133: INFO 2021-06-17T12:26:39 17588 hdmc.streaming 0.125: DownloadManager status refresh interval: 15
<- (E) {"seq":641,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\streaming\download_manager.cpp:134: INFO 2021-06-17T12:26:39 17588 hdmc.streaming 0.14: DownloadManager version refresh interval: 30
<- (E) {"seq":643,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\streaming\download_manager.cpp:135: INFO 2021-06-17T12:26:39 17588 hdmc.streaming 0.14: DownloadManager speed threshold: 30
<- (E) {"seq":645,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\streaming\download_manager.cpp:136: INFO 2021-06-17T12:26:39 17588 hdmc.streaming 0.14: DownloadManager HTTP404 threshold: 2147483647
<- (E) {"seq":647,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\streaming\download_manager.cpp:137: INFO 2021-06-17T12:26:39 17588 hdmc.streaming 0.14: DownloadManager regular exclusion count: 0
<- (E) {"seq":649,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\streaming\download_manager.cpp:138: INFO 2021-06-17T12:26:39 17588 hdmc.streaming 0.14: DownloadManager max regular downloads: 20
<- (E) {"seq":651,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\streaming\download_manager.cpp:139: INFO 2021-06-17T12:26:39 17588 hdmc.streaming 0.14: DownloadManager max large file downloads: 3
<- (E) {"seq":653,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\streaming\download_manager.cpp:140: INFO 2021-06-17T12:26:39 17588 hdmc.streaming 0.14: DownloadManager max home area downloads: 5
<- (E) {"seq":655,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\streaming\download_manager.cpp:141: INFO 2021-06-17T12:26:39 17588 hdmc.streaming 0.14: DownloadManager max prefetch downloads: 5
<- (E) {"seq":657,"type":"event","event":"output","body":{"category":"stdout","output":<DELETED>}}
<DELETED>\src\streaming\download_manager.cpp:142: INFO 2021-06-17T12:26:39 17588 hdmc.streaming 0.14: DownloadManager enable debug: true
<- (E) {"seq":659,"type":"event","event":"thread","body":{"reason":"started","threadId":21344}}
<- (E) {"seq":661,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for kernel.appcore.dll","percentage":0}}
<- (E) {"seq":663,"type":"event","event":"output

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

調査の方向性

報告された launch.json 構成から開始し、Windows 上で cppvsdbg を使用して hd_map_data_access_impl.cpp の 373 行目のブレークポイントを再現します。VARIABLES を展開したとき、または ec を評価したときのデバッグトレースを比較し、Canceled 応答とセッションの終了に注目します。デバッグセッションを終了せずにローカル変数を検査できれば完了です。

索引モデルが issue の本文から書いたものです。

評価

技術スタック
cmake, cpp, typescript, vscode
領域
devtools
issue の種類
バグ
難易度
4/5
見積もり時間
3〜5日
活発さ
停滞
明瞭さ
説明が足りない
初心者へのやさしさ
25/100

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。