microsoft / vscode-cpptools

Official repository for the Microsoft C/C++ extension for VS Code.
Other
5.51k stars 1.55k forks source link

C++ program Launch fails second time #7958

Open Klonan opened 3 years ago

Klonan commented 3 years ago

Bug type: Debugger

I run my program, it runs the program, I close the program. All fine.

However next time I try to run it, the launch does nothing, nothing happens. The 'Run and debug' panel shows the loading bar. The small panel showing 'Pause, Step Over, Restart, Stop' has only restart and stop enabled. Clicking these buttons will stop it, but trying to run again will not start it.

I have to completely restart VSCode to get ANY of my launch.jsons to work.

VS Code version: Code 1.58.2 (c3f126316369cd610563c75b1b1725e0679adfb3, 2021-07-14T22:10:15.214Z) OS version: Windows_NT x64 10.0.19043 Restricted Mode: No

System Info |Item|Value| |---|---| |CPUs|AMD Ryzen 7 3800X 8-Core Processor (16 x 4200)| |GPU Status|2d_canvas: enabled
gpu_compositing: enabled
multiple_raster_threads: enabled_on
oop_rasterization: enabled
opengl: enabled_on
rasterization: enabled
skia_renderer: enabled_on
video_decode: enabled
vulkan: disabled_off
webgl: enabled
webgl2: enabled| |Load (avg)|undefined| |Memory (System)|15.92GB (7.08GB free)| |Process Argv|--crash-reporter-id 42ffcc9f-d1e9-4d04-96a9-4708692910f8| |Screen Reader|no| |VM|0%|
Extensions (4) Extension|Author (truncated)|Version ---|---|--- factoriomod-debug|jus|1.1.11 cpptools|ms-|1.5.1 fastbuild|Ros|1.0.0 vscode-autohotkey|sle|0.2.2
A/B Experiments ``` vsliv368cf:30146710 vsreu685:30147344 python383cf:30185419 pythonvspyt602:30300191 vspor879:30202332 vspor708:30202333 vspor363:30204092 vstes627:30244334 pythonvspyt639:30300192 pythontb:30283811 pythonvspyt551cf:30345471 pythonptprofiler:30281270 vsdfh931:30280409 vshan820:30294714 vstes263:30335439 vscorecescf:30322572 pythondataviewer:30285071 pythonvsuse255:30340121 vscod805cf:30301675 pythonvspyt200:30340761 vscextlangct:30333562 binariesv615:30325510 vsccppwt:30329788 pythonvssor306:30344512 bridge0708:30335490 vstre464:30346472 ```

One of the launch.jsons, they are all similar, just calling different fastbuild tasks:

Launch json ``` { "name": "Factorio Test Debug", "type": "cppvsdbg", "request": "launch", "program": "${workspaceFolder}/bin/Debugx64vs2017/factorio-test.exe", "args": [ //"--test", "TrainGroup" //"--suite", "Train" // //"--suite", "InputAction", "--fork", "-w" //"-i" ], "stopAtEntry": false, "cwd": "${workspaceFolder}", "environment": [], "console": "newExternalWindow", "preLaunchTask": "FastBuildTestsDebug" } ```

https://user-images.githubusercontent.com/11986037/128830777-51698dd2-317f-41a8-aff8-273adef767bc.mp4

WardenGnaw commented 3 years ago

Can you add the following to your launch.json and share the output from the Debug Console?

"logging": {
   "engineLogging": true
}
Klonan commented 3 years ago
Launch json ``` { "name": "Factorio Debug", "type": "cppvsdbg", "request": "launch", "program": "${workspaceFolder}/bin/Debugx64vsbt/factorio-test.exe", //"args": ["--fork"], "args": [ //"--suite", "Train", //"--suite", "Blueprint", //"--suite", "LuaTrain", //"--suite", "TrainStopLimit", //"--test", "TrainGroup", "--fork", //"-g" //"-i" ], "stopAtEntry": false, "cwd": "${workspaceFolder}", "environment": [], "console": "integratedTerminal", "preLaunchTask": "FastBuildDebugTests", "enableDebugHeap": false, "logging": { "engineLogging": true, //"moduleLoad": true, //"programOutput": true, }, "symbolSearchPath": "${workspaceFolder}/bin/Debugx64vsbt/", "requireExactSource": false, "sourceFileMap": { "d:/agent/_work/4/s/src/vctools/crt/vcruntime/src/eh/throw.cpp": "C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30037/crt/src/vcruntime/throw.cpp", "d:/agent/_work/4/s/src/vctools/crt/vcruntime/src/eh/amd64/handlers.asm": "C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30037/crt/src/x64/handlers.asm", } } ```
Debug console output from first launch ``` <- (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":"433ESG/9b0as+pfpZ1YfOGGmFguL5vn4dBnHgWHKrwuUkA="}} <- (E) {"seq":8,"type":"event","event":"initialized","body":{}} -> (C) {"command":"setBreakpoints","arguments":{"source":{"name":"BlueprintEntities.cpp","path":"c:\\Factorio\\src\\Blueprint\\BlueprintEntities.cpp"},"lines":[],"breakpoints":[],"sourceModified":false},"type":"request","seq":3} <- (R) {"seq":11,"type":"response","request_seq":3,"success":true,"command":"setBreakpoints","body":{"breakpoints":[]}} -> (C) {"command":"setBreakpoints","arguments":{"source":{"name":"BlueprintImportExportEngine.cpp","path":"c:\\Factorio\\src\\Util\\BlueprintImportExportEngine.cpp"},"lines":[],"breakpoints":[],"sourceModified":false},"type":"request","seq":4} <- (R) {"seq":14,"type":"response","request_seq":4,"success":true,"command":"setBreakpoints","body":{"breakpoints":[]}} -> (C) {"command":"setBreakpoints","arguments":{"source":{"name":"Car.cpp","path":"c:\\Factorio\\src\\Entity\\Car.cpp"},"lines":[],"breakpoints":[],"sourceModified":false},"type":"request","seq":5} <- (R) {"seq":17,"type":"response","request_seq":5,"success":true,"command":"setBreakpoints","body":{"breakpoints":[]}} -> (C) {"command":"setBreakpoints","arguments":{"source":{"name":"ChartRenderer.cpp","path":"c:\\Factorio\\src\\Graphics\\ChartRenderer.cpp"},"lines":[],"breakpoints":[],"sourceModified":false},"type":"request","seq":6} <- (R) {"seq":20,"type":"response","request_seq":6,"success":true,"command":"setBreakpoints","body":{"breakpoints":[]}} -> (C) {"command":"setBreakpoints","arguments":{"source":{"name":"DrawEngine.cpp","path":"c:\\Factorio\\src\\Graphics\\DrawEngine.cpp"},"lines":[],"breakpoints":[],"sourceModified":false},"type":"request","seq":7} <- (R) {"seq":23,"type":"response","request_seq":7,"success":true,"command":"setBreakpoints","body":{"breakpoints":[]}} -> (C) {"command":"setBreakpoints","arguments":{"source":{"name":"Locomotive.cpp","path":"c:\\Factorio\\src\\Entity\\Locomotive.cpp"},"lines":[],"breakpoints":[],"sourceModified":false},"type":"request","seq":8} <- (R) {"seq":26,"type":"response","request_seq":8,"success":true,"command":"setBreakpoints","body":{"breakpoints":[]}} -> (C) {"command":"setBreakpoints","arguments":{"source":{"name":"LuaSurface.cpp","path":"c:\\Factorio\\src\\Script\\LuaSurface.cpp"},"lines":[],"breakpoints":[],"sourceModified":false},"type":"request","seq":9} <- (R) {"seq":29,"type":"response","request_seq":9,"success":true,"command":"setBreakpoints","body":{"breakpoints":[]}} -> (C) {"command":"setBreakpoints","arguments":{"source":{"name":"MapGenSettings.cpp","path":"c:\\Factorio\\src\\Map\\MapGenSettings.cpp"},"lines":[],"breakpoints":[],"sourceModified":false},"type":"request","seq":10} <- (R) {"seq":32,"type":"response","request_seq":10,"success":true,"command":"setBreakpoints","body":{"breakpoints":[]}} -> (C) {"command":"setBreakpoints","arguments":{"source":{"name":"NoiseProgram.cpp","path":"c:\\Factorio\\src\\Noise\\NoiseProgram.cpp"},"lines":[],"breakpoints":[],"sourceModified":false},"type":"request","seq":11} <- (R) {"seq":35,"type":"response","request_seq":11,"success":true,"command":"setBreakpoints","body":{"breakpoints":[]}} -> (C) {"command":"setBreakpoints","arguments":{"source":{"name":"Surface.cpp","path":"c:\\Factorio\\src\\Surface\\Surface.cpp"},"lines":[],"breakpoints":[],"sourceModified":false},"type":"request","seq":12} <- (R) {"seq":38,"type":"response","request_seq":12,"success":true,"command":"setBreakpoints","body":{"breakpoints":[]}} -> (C) {"command":"setBreakpoints","arguments":{"source":{"name":"Window.cpp","path":"c:\\Factorio\\libraries\\Agui\\Widget\\Window.cpp"},"lines":[],"breakpoints":[],"sourceModified":false},"type":"request","seq":13} <- (R) {"seq":41,"type":"response","request_seq":13,"success":true,"command":"setBreakpoints","body":{"breakpoints":[]}} -> (C) {"command":"setFunctionBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":14} <- (R) {"seq":44,"type":"response","request_seq":14,"success":true,"command":"setFunctionBreakpoints","body":{"breakpoints":[]}} -> (C) {"command":"setInstructionBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":15} <- (R) {"seq":47,"type":"response","request_seq":15,"success":true,"command":"setInstructionBreakpoints","body":{"breakpoints":[]}} -> (C) {"command":"setExceptionBreakpoints","arguments":{"filters":[],"filterOptions":[]},"type":"request","seq":16} <- (R) {"seq":50,"type":"response","request_seq":16,"success":true,"command":"setExceptionBreakpoints","body":{}} -> (C) {"command":"configurationDone","type":"request","seq":17} -> (C) {"seq":53,"type":"request","command":"runInTerminal","arguments":{"kind":"integrated","title":"C:\\Factorio\\bin\\Debugx64vsbt\\factorio-test.exe","cwd":"","args":["c:\\Users\\konra\\.vscode\\extensions\\ms-vscode.cpptools-1.5.1\\debugAdapters\\vsdbg\\bin\\VsDebugConsole.exe","\\\\.\\pipe\\Microsoft-VisualStudio-Debug-Console-{2E6D5183-D60B-48F9-AA44-C93D72756D3D}","Local\\{2E6D5183-D60B-48F9-AA44-C93D72756D3D}","/AutoExit"]}} -> (C) {"type":"response","seq":18,"command":"runInTerminal","request_seq":53,"success":true,"body":{"shellProcessId":22364}} <- (E) {"seq":56,"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.10709.2 commit:ea6333b6431d8b05cced1554007649d31adde019","VS.Diagnostics.Debugger.vsdbg.WindowsVersion":"10.0.19043"}}} <- (E) {"seq":58,"type":"event","event":"process","body":{"name":"C:\\Factorio\\bin\\Debugx64vsbt\\factorio-test.exe","systemProcessId":18368,"startMethod":"launch","pointerSize":64}} <- (E) {"seq":60,"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.10709.2 commit:ea6333b6431d8b05cced1554007649d31adde019","VS.Diagnostics.Debugger.vsdbg.VisualizerFileUsed":false,"VS.Diagnostics.Debugger.vsdbg.WindowsVersion":"10.0.19043","VS.Diagnostics.Debugger.vsdbg.Launch.Duration":296,"VS.Diagnostics.Debugger.vsdbg.TargetType":"Live","VS.Diagnostics.Debugger.vsdbg.AdapterId":"cppvsdbg","VS.Diagnostics.Debugger.vsdbg.SourceFileMappings":2}}} <- (R) {"seq":62,"type":"response","request_seq":17,"success":true,"command":"configurationDone"} <- (E) {"seq":64,"type":"event","event":"progressStart","body":{"progressId":"1","title":"Loading...","cancellable":true,"message":"Loading symbols for factorio-test.exe","percentage":0}} <- (E) {"seq":66,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for factorio-test.exe from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} -> (C) {"command":"threads","type":"request","seq":19} <- (R) {"seq":69,"type":"response","request_seq":19,"success":true,"command":"threads","body":{"threads":[]}} <- (E) {"seq":71,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Factorio\\bin\\Debugx64vsbt\\factorio-test.exe'. Symbols loaded.\n"}} Loaded 'C:\Factorio\bin\Debugx64vsbt\factorio-test.exe'. Symbols loaded. <- (E) {"seq":73,"type":"event","event":"module","body":{"reason":"new","module":{"id":1000,"name":"factorio-test.exe","path":"C:\\Factorio\\bin\\Debugx64vsbt\\factorio-test.exe","isUserCode":true,"symbolStatus":"Symbols loaded.","symbolFilePath":"C:\\Factorio\\bin\\Debugx64vsbt\\factorio-test.pdb"}}} <- (E) {"seq":75,"type":"event","event":"thread","body":{"reason":"started","threadId":2620}} <- (E) {"seq":77,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ntdll.dll","percentage":0}} <- (E) {"seq":79,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ntdll.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":81,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ntdll.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":83,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ntdll.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":85,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ntdll.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":87,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ntdll.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":89,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ntdll.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":91,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ntdll.dll from: C:\\Factorio/bin/Debugx64vsbt/\\ntdll.pdb\\46f6f5c30e7147e46f2a953a5daf201a1\\","percentage":0}} <- (E) {"seq":93,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\ntdll.dll'. \n"}} <- (E) {"seq":95,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ntdll.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\ntdll.pdb\\46f6f5c30e7147e46f2a953a5daf201a1\\","percentage":0}} Loaded 'C:\Windows\System32\ntdll.dll'. <- (E) {"seq":97,"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.1110 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":99,"type":"event","event":"thread","body":{"reason":"started","threadId":22524}} <- (E) {"seq":101,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for kernel32.dll","percentage":0}} <- (E) {"seq":103,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for kernel32.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":105,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\kernel32.dll'. \n"}} Loaded 'C:\Windows\System32\kernel32.dll'. <- (E) {"seq":107,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for kernel32.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":109,"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":111,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for kernel32.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":113,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for kernel32.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":115,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for kernel32.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":117,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for kernel32.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":119,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for kernel32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\kernel32.pdb\\0245fb04f377b64f56f6326f4a5a237d1\\","percentage":0}} <- (E) {"seq":121,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for kernel32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\kernel32.pdb\\0245fb04f377b64f56f6326f4a5a237d1\\","percentage":0}} <- (E) {"seq":123,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\KernelBase.dll'. \n"}} Loaded 'C:\Windows\System32\KernelBase.dll'. <- (E) {"seq":125,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for KernelBase.dll","percentage":0}} <- (E) {"seq":127,"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.1110 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":129,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for KernelBase.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":131,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for KernelBase.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":133,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for KernelBase.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":135,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for KernelBase.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":137,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for KernelBase.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":139,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for KernelBase.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":141,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for KernelBase.dll from: C:\\Factorio/bin/Debugx64vsbt/\\kernelbase.pdb\\ec740261d23ca75af4d4870474cfbbef1\\","percentage":0}} <- (E) {"seq":143,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for KernelBase.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\kernelbase.pdb\\ec740261d23ca75af4d4870474cfbbef1\\","percentage":0}} <- (E) {"seq":145,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32.dll","percentage":0}} <- (E) {"seq":147,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":149,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":151,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\gdi32.dll'. \n"}} Loaded 'C:\Windows\System32\gdi32.dll'. <- (E) {"seq":153,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":155,"type":"event","event":"module","body":{"reason":"new","module":{"id":1004,"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":157,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":159,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":161,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":163,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\gdi32.pdb\\26374d0c904f7078cba564e8fca58ee71\\","percentage":0}} <- (E) {"seq":165,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\gdi32.pdb\\26374d0c904f7078cba564e8fca58ee71\\","percentage":0}} <- (E) {"seq":167,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\win32u.dll'. \n"}} <- (E) {"seq":169,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for win32u.dll","percentage":0}} Loaded 'C:\Windows\System32\win32u.dll'. <- (E) {"seq":171,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for win32u.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":173,"type":"event","event":"module","body":{"reason":"new","module":{"id":1005,"name":"win32u.dll","path":"C:\\Windows\\System32\\win32u.dll","isUserCode":false,"version":"10.0.19041.1110 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":175,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for win32u.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":177,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for win32u.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":179,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for win32u.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":181,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for win32u.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":183,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for win32u.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":185,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for win32u.dll from: C:\\Factorio/bin/Debugx64vsbt/\\win32u.pdb\\771c2e28ad611fa7edee8227da66c9351\\","percentage":0}} <- (E) {"seq":188,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\gdi32full.dll'. \n"}} Loaded 'C:\Windows\System32\gdi32full.dll'. <- (E) {"seq":187,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for win32u.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\win32u.pdb\\771c2e28ad611fa7edee8227da66c9351\\","percentage":0}} <- (E) {"seq":191,"type":"event","event":"module","body":{"reason":"new","module":{"id":1006,"name":"gdi32full.dll","path":"C:\\Windows\\System32\\gdi32full.dll","isUserCode":false,"version":"10.0.19041.1110 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":193,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32full.dll","percentage":0}} <- (E) {"seq":195,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32full.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":197,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32full.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":199,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32full.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":201,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32full.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":203,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32full.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":205,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\msvcp_win.dll'. \n"}} <- (E) {"seq":207,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32full.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} Loaded 'C:\Windows\System32\msvcp_win.dll'. <- (E) {"seq":209,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32full.dll from: C:\\Factorio/bin/Debugx64vsbt/\\gdi32full.pdb\\1520038ea8c1aaee01905af5bc246b7e1\\","percentage":0}} <- (E) {"seq":211,"type":"event","event":"module","body":{"reason":"new","module":{"id":1007,"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":213,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for gdi32full.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\gdi32full.pdb\\1520038ea8c1aaee01905af5bc246b7e1\\","percentage":0}} <- (E) {"seq":215,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp_win.dll","percentage":0}} <- (E) {"seq":217,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp_win.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":219,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\ucrtbase.dll'. \n"}} Loaded 'C:\Windows\System32\ucrtbase.dll'. <- (E) {"seq":221,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp_win.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":223,"type":"event","event":"module","body":{"reason":"new","module":{"id":1008,"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":225,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp_win.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":227,"type":"event","event":"thread","body":{"reason":"started","threadId":21052}} <- (E) {"seq":229,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp_win.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":231,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp_win.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":233,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp_win.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":235,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp_win.dll from: C:\\Factorio/bin/Debugx64vsbt/\\msvcp_win.pdb\\05c9daa50c5625a8a54295b732954b3f1\\","percentage":0}} <- (E) {"seq":237,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcp_win.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\msvcp_win.pdb\\05c9daa50c5625a8a54295b732954b3f1\\","percentage":0}} <- (E) {"seq":239,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbase.dll","percentage":0}} <- (E) {"seq":241,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\user32.dll'. \n"}} Loaded 'C:\Windows\System32\user32.dll'. <- (E) {"seq":243,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbase.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":245,"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":247,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbase.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":249,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbase.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":251,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbase.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":253,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbase.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":255,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbase.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":257,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbase.dll from: C:\\Factorio/bin/Debugx64vsbt/\\ucrtbase.pdb\\152b3c4f5e1ce0fe6bc36e9f0f2b10e61\\","percentage":0}} <- (E) {"seq":259,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\ole32.dll'. \n"}} Loaded 'C:\Windows\System32\ole32.dll'. <- (E) {"seq":261,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ucrtbase.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\ucrtbase.pdb\\152b3c4f5e1ce0fe6bc36e9f0f2b10e61\\","percentage":0}} <- (E) {"seq":263,"type":"event","event":"module","body":{"reason":"new","module":{"id":1010,"name":"ole32.dll","path":"C:\\Windows\\System32\\ole32.dll","isUserCode":false,"version":"10.0.19041.746 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":265,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for user32.dll","percentage":0}} <- (E) {"seq":267,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for user32.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":269,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for user32.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":271,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for user32.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":273,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for user32.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":275,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\rpcrt4.dll'. \n"}} <- (E) {"seq":277,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for user32.dll from: C:\\WINDOWS\\dll\\","percentage":0}} Loaded 'C:\Windows\System32\rpcrt4.dll'. <- (E) {"seq":279,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for user32.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":281,"type":"event","event":"module","body":{"reason":"new","module":{"id":1011,"name":"rpcrt4.dll","path":"C:\\Windows\\System32\\rpcrt4.dll","isUserCode":false,"version":"10.0.19041.1081 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":283,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for user32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\user32.pdb\\b943cb2722da137860020bc41599a58b1\\","percentage":0}} <- (E) {"seq":285,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for user32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\user32.pdb\\b943cb2722da137860020bc41599a58b1\\","percentage":0}} <- (E) {"seq":287,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ole32.dll","percentage":0}} <- (E) {"seq":289,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ole32.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":291,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ole32.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":293,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ole32.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":295,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\combase.dll'. \n"}} <- (E) {"seq":297,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ole32.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} Loaded 'C:\Windows\System32\combase.dll'. <- (E) {"seq":299,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ole32.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":301,"type":"event","event":"module","body":{"reason":"new","module":{"id":1012,"name":"combase.dll","path":"C:\\Windows\\System32\\combase.dll","isUserCode":false,"version":"10.0.19041.1081 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":303,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ole32.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":305,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ole32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\ole32.pdb\\297f0cdb585cffa37a28182df1e3386c1\\","percentage":0}} <- (E) {"seq":307,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ole32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\ole32.pdb\\297f0cdb585cffa37a28182df1e3386c1\\","percentage":0}} <- (E) {"seq":309,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rpcrt4.dll","percentage":0}} <- (E) {"seq":311,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rpcrt4.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":313,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\psapi.dll'. \n"}} Loaded 'C:\Windows\System32\psapi.dll'. <- (E) {"seq":315,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rpcrt4.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":317,"type":"event","event":"module","body":{"reason":"new","module":{"id":1013,"name":"psapi.dll","path":"C:\\Windows\\System32\\psapi.dll","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":319,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rpcrt4.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":321,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rpcrt4.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":323,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rpcrt4.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":325,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rpcrt4.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":327,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rpcrt4.dll from: C:\\Factorio/bin/Debugx64vsbt/\\rpcrt4.pdb\\409b5e50d8d3c1336262604768a057481\\","percentage":0}} <- (E) {"seq":329,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for rpcrt4.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\rpcrt4.pdb\\409b5e50d8d3c1336262604768a057481\\","percentage":0}} <- (E) {"seq":331,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for combase.dll","percentage":0}} <- (E) {"seq":333,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\shell32.dll'. \n"}} <- (E) {"seq":335,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for combase.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} Loaded 'C:\Windows\System32\shell32.dll'. <- (E) {"seq":337,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for combase.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":339,"type":"event","event":"module","body":{"reason":"new","module":{"id":1014,"name":"shell32.dll","path":"C:\\Windows\\System32\\shell32.dll","isUserCode":false,"version":"10.0.19041.1023 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":341,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for combase.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":343,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for combase.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":345,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for combase.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":347,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for combase.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":349,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for combase.dll from: C:\\Factorio/bin/Debugx64vsbt/\\combase.pdb\\733e5da3c48e6dcd7c6c2254b636de751\\","percentage":0}} <- (E) {"seq":351,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for combase.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\combase.pdb\\733e5da3c48e6dcd7c6c2254b636de751\\","percentage":0}} <- (E) {"seq":353,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\shlwapi.dll'. \n"}} <- (E) {"seq":354,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for psapi.dll","percentage":0}} Loaded 'C:\Windows\System32\shlwapi.dll'. <- (E) {"seq":357,"type":"event","event":"module","body":{"reason":"new","module":{"id":1015,"name":"shlwapi.dll","path":"C:\\Windows\\System32\\shlwapi.dll","isUserCode":false,"version":"10.0.19041.1023 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":359,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for psapi.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":361,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for psapi.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":363,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for psapi.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":365,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for psapi.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":367,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for psapi.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":369,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for psapi.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":371,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for psapi.dll from: C:\\Factorio/bin/Debugx64vsbt/\\psapi.pdb\\ee2878ac2a70fe7d5febbfc5e9b124a01\\","percentage":0}} <- (E) {"seq":372,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\msvcrt.dll'. \n"}} Loaded 'C:\Windows\System32\msvcrt.dll'. <- (E) {"seq":375,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for psapi.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\psapi.pdb\\ee2878ac2a70fe7d5febbfc5e9b124a01\\","percentage":0}} <- (E) {"seq":377,"type":"event","event":"module","body":{"reason":"new","module":{"id":1016,"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":379,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shell32.dll","percentage":0}} <- (E) {"seq":381,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shell32.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":383,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shell32.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":385,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shell32.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":387,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shell32.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":389,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shell32.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":391,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shell32.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":393,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\imm32.dll'. \n"}} <- (E) {"seq":395,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shell32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\shell32.pdb\\ed491e3423975c27b06f604ca403217b1\\","percentage":0}} Loaded 'C:\Windows\System32\imm32.dll'. <- (E) {"seq":397,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shell32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\shell32.pdb\\ed491e3423975c27b06f604ca403217b1\\","percentage":0}} <- (E) {"seq":399,"type":"event","event":"module","body":{"reason":"new","module":{"id":1017,"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":401,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shlwapi.dll","percentage":0}} <- (E) {"seq":403,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shlwapi.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":405,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shlwapi.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":407,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\oleaut32.dll'. \n"}} Loaded 'C:\Windows\System32\oleaut32.dll'. <- (E) {"seq":409,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shlwapi.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":411,"type":"event","event":"module","body":{"reason":"new","module":{"id":1018,"name":"oleaut32.dll","path":"C:\\Windows\\System32\\oleaut32.dll","isUserCode":false,"version":"10.0.19041.985 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":413,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shlwapi.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":415,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shlwapi.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":417,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shlwapi.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":419,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shlwapi.dll from: C:\\Factorio/bin/Debugx64vsbt/\\shlwapi.pdb\\755b230288bf549eb86d22f54afa45f71\\","percentage":0}} <- (E) {"seq":421,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for shlwapi.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\shlwapi.pdb\\755b230288bf549eb86d22f54afa45f71\\","percentage":0}} <- (E) {"seq":423,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcrt.dll","percentage":0}} <- (E) {"seq":425,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\advapi32.dll'. \n"}} <- (E) {"seq":427,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcrt.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} Loaded 'C:\Windows\System32\advapi32.dll'. <- (E) {"seq":429,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcrt.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":431,"type":"event","event":"module","body":{"reason":"new","module":{"id":1019,"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":433,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcrt.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":435,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcrt.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":437,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcrt.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":439,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcrt.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":441,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcrt.dll from: C:\\Factorio/bin/Debugx64vsbt/\\msvcrt.pdb\\8f2b808e7da36eb90342fdd8bca575db1\\","percentage":0}} <- (E) {"seq":443,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\sechost.dll'. \n"}} <- (E) {"seq":445,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for msvcrt.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\msvcrt.pdb\\8f2b808e7da36eb90342fdd8bca575db1\\","percentage":0}} Loaded 'C:\Windows\System32\sechost.dll'. <- (E) {"seq":447,"type":"event","event":"module","body":{"reason":"new","module":{"id":1020,"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":449,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imm32.dll","percentage":0}} <- (E) {"seq":451,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imm32.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":453,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imm32.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":455,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imm32.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":457,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imm32.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":459,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imm32.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":461,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\crypt32.dll'. \n"}} Loaded 'C:\Windows\System32\crypt32.dll'. <- (E) {"seq":463,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imm32.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":465,"type":"event","event":"module","body":{"reason":"new","module":{"id":1021,"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":467,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imm32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\imm32.pdb\\265bcb59f6886a8f9f482a4a4903527b1\\","percentage":0}} <- (E) {"seq":469,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imm32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\imm32.pdb\\265bcb59f6886a8f9f482a4a4903527b1\\","percentage":0}} <- (E) {"seq":471,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for oleaut32.dll","percentage":0}} <- (E) {"seq":473,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for oleaut32.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":475,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for oleaut32.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":477,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for oleaut32.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":479,"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":481,"type":"event","event":"module","body":{"reason":"new","module":{"id":1022,"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":483,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for oleaut32.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":485,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for oleaut32.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":487,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for oleaut32.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":489,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for oleaut32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\oleaut32.pdb\\ec4cc2b683a10fff6cfbf7db017772c51\\","percentage":0}} <- (E) {"seq":491,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for oleaut32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\oleaut32.pdb\\ec4cc2b683a10fff6cfbf7db017772c51\\","percentage":0}} <- (E) {"seq":493,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\wintrust.dll'. \n"}} <- (E) {"seq":495,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for advapi32.dll","percentage":0}} Loaded 'C:\Windows\System32\wintrust.dll'. <- (E) {"seq":497,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for advapi32.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":499,"type":"event","event":"module","body":{"reason":"new","module":{"id":1023,"name":"wintrust.dll","path":"C:\\Windows\\System32\\wintrust.dll","isUserCode":false,"version":"10.0.19041.1110 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":501,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for advapi32.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":503,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for advapi32.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":505,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for advapi32.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":507,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for advapi32.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":509,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for advapi32.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":511,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for advapi32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\advapi32.pdb\\91dd02b3506ae1a9359aa29c417aee731\\","percentage":0}} <- (E) {"seq":513,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\imagehlp.dll'. \n"}} Loaded 'C:\Windows\System32\imagehlp.dll'. <- (E) {"seq":515,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for advapi32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\advapi32.pdb\\91dd02b3506ae1a9359aa29c417aee731\\","percentage":0}} <- (E) {"seq":517,"type":"event","event":"module","body":{"reason":"new","module":{"id":1024,"name":"imagehlp.dll","path":"C:\\Windows\\System32\\imagehlp.dll","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":519,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sechost.dll","percentage":0}} <- (E) {"seq":521,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sechost.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":523,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sechost.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":525,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sechost.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":527,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sechost.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":529,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\Wldap32.dll'. \n"}} <- (E) {"seq":530,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sechost.dll from: C:\\WINDOWS\\dll\\","percentage":0}} Loaded 'C:\Windows\System32\Wldap32.dll'. <- (E) {"seq":533,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sechost.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":535,"type":"event","event":"module","body":{"reason":"new","module":{"id":1025,"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":537,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sechost.dll from: C:\\Factorio/bin/Debugx64vsbt/\\sechost.pdb\\1d6f7b4ca1f0cab689461853b7a28aaa1\\","percentage":0}} <- (E) {"seq":539,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for sechost.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\sechost.pdb\\1d6f7b4ca1f0cab689461853b7a28aaa1\\","percentage":0}} <- (E) {"seq":541,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for crypt32.dll","percentage":0}} <- (E) {"seq":543,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for crypt32.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":545,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for crypt32.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":547,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for crypt32.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":549,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for crypt32.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":551,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for crypt32.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":553,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for crypt32.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":555,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for crypt32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\crypt32.pdb\\6ebc6f26f9c11ccf10531796166f5f041\\","percentage":0}} <- (E) {"seq":557,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for crypt32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\crypt32.pdb\\6ebc6f26f9c11ccf10531796166f5f041\\","percentage":0}} <- (E) {"seq":559,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ws2_32.dll","percentage":0}} <- (E) {"seq":561,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ws2_32.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":563,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ws2_32.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":565,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ws2_32.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":567,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\winmm.dll'. \n"}} <- (E) {"seq":569,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ws2_32.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} Loaded 'C:\Windows\System32\winmm.dll'. <- (E) {"seq":571,"type":"event","event":"module","body":{"reason":"new","module":{"id":1026,"name":"winmm.dll","path":"C:\\Windows\\System32\\winmm.dll","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":573,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ws2_32.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":575,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ws2_32.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":577,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ws2_32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\ws2_32.pdb\\5c73fc6f5404081459a8538913657c761\\","percentage":0}} <- (E) {"seq":579,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for ws2_32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\ws2_32.pdb\\5c73fc6f5404081459a8538913657c761\\","percentage":0}} <- (E) {"seq":581,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for wintrust.dll","percentage":0}} <- (E) {"seq":583,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for wintrust.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":585,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for wintrust.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":587,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\WinSxS\\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.19041.1110_none_91a01826cc8bca4c\\GdiPlus.dll'. \n"}} <- (E) {"seq":588,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for wintrust.dll from: C:\\WINDOWS\\","percentage":0}} Loaded 'C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.19041.1110_none_91a01826cc8bca4c\GdiPlus.dll'. <- (E) {"seq":591,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for wintrust.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":593,"type":"event","event":"module","body":{"reason":"new","module":{"id":1027,"name":"GdiPlus.dll","path":"C:\\Windows\\WinSxS\\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.19041.1110_none_91a01826cc8bca4c\\GdiPlus.dll","isUserCode":false,"version":"10.0.19041.1110 (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 wintrust.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":597,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for wintrust.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":599,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for wintrust.dll from: C:\\Factorio/bin/Debugx64vsbt/\\wintrust.pdb\\0c49fd8796795a01b8ecab4458148c101\\","percentage":0}} <- (E) {"seq":601,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for wintrust.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\wintrust.pdb\\0c49fd8796795a01b8ecab4458148c101\\","percentage":0}} <- (E) {"seq":603,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imagehlp.dll","percentage":0}} <- (E) {"seq":605,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imagehlp.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":607,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imagehlp.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":609,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imagehlp.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":611,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imagehlp.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":613,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imagehlp.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":615,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\IPHLPAPI.DLL'. \n"}} <- (E) {"seq":616,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imagehlp.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} Loaded 'C:\Windows\System32\IPHLPAPI.DLL'. <- (E) {"seq":619,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imagehlp.dll from: C:\\Factorio/bin/Debugx64vsbt/\\imagehlp.pdb\\a6b8201d6b44fcf536439aad37b3d2851\\","percentage":0}} <- (E) {"seq":621,"type":"event","event":"module","body":{"reason":"new","module":{"id":1028,"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":623,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for imagehlp.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\imagehlp.pdb\\a6b8201d6b44fcf536439aad37b3d2851\\","percentage":0}} <- (E) {"seq":625,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for Wldap32.dll","percentage":0}} <- (E) {"seq":627,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for Wldap32.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":629,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for Wldap32.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":631,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\version.dll'. \n"}} Loaded 'C:\Windows\System32\version.dll'. <- (E) {"seq":633,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for Wldap32.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":635,"type":"event","event":"module","body":{"reason":"new","module":{"id":1029,"name":"version.dll","path":"C:\\Windows\\System32\\version.dll","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":637,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for Wldap32.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":639,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for Wldap32.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":641,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for Wldap32.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":643,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for Wldap32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\wldap32.pdb\\5b4b4815e81058ab9b695b3d9860755e1\\","percentage":0}} <- (E) {"seq":645,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for Wldap32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\wldap32.pdb\\5b4b4815e81058ab9b695b3d9860755e1\\","percentage":0}} <- (E) {"seq":647,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmm.dll","percentage":0}} <- (E) {"seq":649,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmm.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":651,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\dsound.dll'. \n"}} Loaded 'C:\Windows\System32\dsound.dll'. <- (E) {"seq":653,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmm.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":655,"type":"event","event":"module","body":{"reason":"new","module":{"id":1030,"name":"dsound.dll","path":"C:\\Windows\\System32\\dsound.dll","isUserCode":false,"version":"10.0.19041.1 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":657,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmm.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":659,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmm.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":661,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmm.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":663,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmm.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":665,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmm.dll from: C:\\Factorio/bin/Debugx64vsbt/\\winmm.pdb\\31adb453ffafae0333718e86e81811cf1\\","percentage":0}} <- (E) {"seq":667,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmm.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\winmm.pdb\\31adb453ffafae0333718e86e81811cf1\\","percentage":0}} <- (E) {"seq":669,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for GdiPlus.dll","percentage":0}} <- (E) {"seq":671,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for GdiPlus.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":673,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for GdiPlus.dll from: C:\\Windows\\WinSxS\\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.19041.1110_none_91a01826cc8bca4c\\","percentage":0}} <- (E) {"seq":675,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\powrprof.dll'. \n"}} <- (E) {"seq":677,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for GdiPlus.dll from: C:\\WINDOWS\\","percentage":0}} Loaded 'C:\Windows\System32\powrprof.dll'. <- (E) {"seq":679,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for GdiPlus.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":681,"type":"event","event":"module","body":{"reason":"new","module":{"id":1031,"name":"powrprof.dll","path":"C:\\Windows\\System32\\powrprof.dll","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":683,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for GdiPlus.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":685,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for GdiPlus.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":687,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for GdiPlus.dll from: C:\\Factorio/bin/Debugx64vsbt/\\gdiplus.pdb\\7537f4f4a4a7d8fb38b76169cafe703b1\\","percentage":0}} <- (E) {"seq":689,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for GdiPlus.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\gdiplus.pdb\\7537f4f4a4a7d8fb38b76169cafe703b1\\","percentage":0}} <- (E) {"seq":691,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for IPHLPAPI.DLL","percentage":0}} <- (E) {"seq":693,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for IPHLPAPI.DLL from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":695,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for IPHLPAPI.DLL from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":697,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\winmmbase.dll'. \n"}} <- (E) {"seq":699,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for IPHLPAPI.DLL from: C:\\WINDOWS\\","percentage":0}} Loaded 'C:\Windows\System32\winmmbase.dll'. <- (E) {"seq":701,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for IPHLPAPI.DLL from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":703,"type":"event","event":"module","body":{"reason":"new","module":{"id":1032,"name":"winmmbase.dll","path":"C:\\Windows\\System32\\winmmbase.dll","isUserCode":false,"version":"10.0.19041.1 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":705,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for IPHLPAPI.DLL from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":707,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for IPHLPAPI.DLL from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":709,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for IPHLPAPI.DLL from: C:\\Factorio/bin/Debugx64vsbt/\\iphlpapi.pdb\\4e37cf5014f2c685340a20e5308d51721\\","percentage":0}} <- (E) {"seq":711,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for IPHLPAPI.DLL from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\iphlpapi.pdb\\4e37cf5014f2c685340a20e5308d51721\\","percentage":0}} <- (E) {"seq":713,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for version.dll","percentage":0}} <- (E) {"seq":715,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for version.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":717,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for version.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":719,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for version.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":721,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for version.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":723,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for version.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":725,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for version.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":727,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for version.dll from: C:\\Factorio/bin/Debugx64vsbt/\\version.pdb\\7ecfcc586d6aa8fe95166abb4a567c131\\","percentage":0}} <- (E) {"seq":729,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for version.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\version.pdb\\7ecfcc586d6aa8fe95166abb4a567c131\\","percentage":0}} <- (E) {"seq":731,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dsound.dll","percentage":0}} <- (E) {"seq":733,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dsound.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":735,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dsound.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":737,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dsound.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":739,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dsound.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":741,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dsound.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":743,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dsound.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":745,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dsound.dll from: C:\\Factorio/bin/Debugx64vsbt/\\dsound.pdb\\1380fd78f5886f3483654383fe4824051\\","percentage":0}} <- (E) {"seq":747,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for dsound.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\dsound.pdb\\1380fd78f5886f3483654383fe4824051\\","percentage":0}} <- (E) {"seq":749,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for powrprof.dll","percentage":0}} <- (E) {"seq":751,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for powrprof.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":753,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for powrprof.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":755,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for powrprof.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":757,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for powrprof.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":759,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for powrprof.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":761,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for powrprof.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":763,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for powrprof.dll from: C:\\Factorio/bin/Debugx64vsbt/\\powrprof.pdb\\269647d7a816fb97df6e45324856dc361\\","percentage":0}} <- (E) {"seq":765,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for powrprof.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\powrprof.pdb\\269647d7a816fb97df6e45324856dc361\\","percentage":0}} <- (E) {"seq":767,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmmbase.dll","percentage":0}} <- (E) {"seq":769,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmmbase.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":771,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmmbase.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":773,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmmbase.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":775,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmmbase.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":777,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmmbase.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":779,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmmbase.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":781,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmmbase.dll from: C:\\Factorio/bin/Debugx64vsbt/\\WINMMBASE.pdb\\6362ba6aafe3057260465e01af1bae911\\","percentage":0}} <- (E) {"seq":783,"type":"event","event":"progressUpdate","body":{"progressId":"1","message":"Loading symbols for winmmbase.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\WINMMBASE.pdb\\6362ba6aafe3057260465e01af1bae911\\","percentage":0}} -> (C) {"command":"threads","type":"request","seq":20} <- (R) {"seq":786,"type":"response","request_seq":20,"success":true,"command":"threads","body":{"threads":[{"id":2620,"name":"Thread #2620"},{"id":22524,"name":"Thread #22524"},{"id":21052,"name":"Thread #21052"}]}} <- (E) {"seq":788,"type":"event","event":"progressEnd","body":{"progressId":"1"}} <- (E) {"seq":790,"type":"event","event":"thread","body":{"reason":"started","threadId":24128}} <- (E) {"seq":792,"type":"event","event":"progressStart","body":{"progressId":"2","title":"Loading...","cancellable":true,"message":"Loading symbols for msasn1.dll","percentage":0}} <- (E) {"seq":794,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\msasn1.dll'. \n"}} Loaded 'C:\Windows\System32\msasn1.dll'. <- (E) {"seq":796,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for msasn1.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":798,"type":"event","event":"module","body":{"reason":"new","module":{"id":1033,"name":"msasn1.dll","path":"C:\\Windows\\System32\\msasn1.dll","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":800,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for msasn1.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":802,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for msasn1.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":804,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for msasn1.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":806,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for msasn1.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":808,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for msasn1.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":810,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for msasn1.dll from: C:\\Factorio/bin/Debugx64vsbt/\\msasn1.pdb\\c9d15598bb8754c35c6f58c2f6a5d6a91\\","percentage":0}} <- (E) {"seq":812,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for msasn1.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\msasn1.pdb\\c9d15598bb8754c35c6f58c2f6a5d6a91\\","percentage":0}} <- (E) {"seq":814,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for umpdc.dll","percentage":0}} <- (E) {"seq":816,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\umpdc.dll'. \n"}} <- (E) {"seq":818,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for umpdc.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} Loaded 'C:\Windows\System32\umpdc.dll'. <- (E) {"seq":820,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for umpdc.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":822,"type":"event","event":"module","body":{"reason":"new","module":{"id":1034,"name":"umpdc.dll","path":"C:\\Windows\\System32\\umpdc.dll","isUserCode":true,"symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":824,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for umpdc.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":826,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for umpdc.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":828,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for umpdc.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":830,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for umpdc.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":832,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for umpdc.dll from: C:\\Factorio/bin/Debugx64vsbt/\\UMPDC.pdb\\705066911372169e08bcb22260f64cc21\\","percentage":0}} <- (E) {"seq":834,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for umpdc.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\UMPDC.pdb\\705066911372169e08bcb22260f64cc21\\","percentage":0}} <- (E) {"seq":836,"type":"event","event":"thread","body":{"reason":"exited","threadId":22524}} -> (C) {"command":"threads","type":"request","seq":21} <- (R) {"seq":839,"type":"response","request_seq":21,"success":true,"command":"threads","body":{"threads":[{"id":2620,"name":"Thread #2620"},{"id":21052,"name":"Thread #21052"},{"id":24128,"name":"Thread #24128"}]}} <- (E) {"seq":841,"type":"event","event":"thread","body":{"reason":"started","threadId":5560}} <- (E) {"seq":843,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for kernel.appcore.dll","percentage":0}} <- (E) {"seq":845,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for kernel.appcore.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":847,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\kernel.appcore.dll'. \n"}} <- (E) {"seq":849,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for kernel.appcore.dll from: C:\\Windows\\System32\\","percentage":0}} Loaded 'C:\Windows\System32\kernel.appcore.dll'. <- (E) {"seq":851,"type":"event","event":"module","body":{"reason":"new","module":{"id":1035,"name":"kernel.appcore.dll","path":"C:\\Windows\\System32\\kernel.appcore.dll","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":853,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for kernel.appcore.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":855,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for kernel.appcore.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":857,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for kernel.appcore.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":859,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for kernel.appcore.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":861,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for kernel.appcore.dll from: C:\\Factorio/bin/Debugx64vsbt/\\Kernel.Appcore.pdb\\5e49b3157247a4cebabe3e86c162bf9c1\\","percentage":0}} <- (E) {"seq":863,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for kernel.appcore.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\Kernel.Appcore.pdb\\5e49b3157247a4cebabe3e86c162bf9c1\\","percentage":0}} <- (E) {"seq":865,"type":"event","event":"thread","body":{"reason":"started","threadId":3036}} <- (E) {"seq":867,"type":"event","event":"thread","body":{"reason":"started","threadId":9096}} <- (E) {"seq":869,"type":"event","event":"thread","body":{"reason":"started","threadId":2656}} <- (E) {"seq":871,"type":"event","event":"thread","body":{"reason":"started","threadId":20172}} <- (E) {"seq":873,"type":"event","event":"thread","body":{"reason":"started","threadId":23824}} <- (E) {"seq":875,"type":"event","event":"thread","body":{"reason":"started","threadId":6048}} <- (E) {"seq":877,"type":"event","event":"thread","body":{"reason":"started","threadId":7816}} <- (E) {"seq":879,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for secur32.dll","percentage":0}} <- (E) {"seq":881,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for secur32.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":883,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for secur32.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":885,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\secur32.dll'. \n"}} Loaded 'C:\Windows\System32\secur32.dll'. <- (E) {"seq":887,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for secur32.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":889,"type":"event","event":"module","body":{"reason":"new","module":{"id":1036,"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":891,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for secur32.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":893,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for secur32.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":895,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for secur32.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":897,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for secur32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\secur32.pdb\\4103238df66a8868f72c432d27393c831\\","percentage":0}} <- (E) {"seq":899,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for secur32.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\secur32.pdb\\4103238df66a8868f72c432d27393c831\\","percentage":0}} <- (E) {"seq":901,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for sspicli.dll","percentage":0}} <- (E) {"seq":903,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for sspicli.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":905,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for sspicli.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":907,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\sspicli.dll'. \n"}} Loaded 'C:\Windows\System32\sspicli.dll'. <- (E) {"seq":909,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for sspicli.dll from: C:\\WINDOWS\\","percentage":0}} <- (E) {"seq":911,"type":"event","event":"module","body":{"reason":"new","module":{"id":1037,"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":913,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for sspicli.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":915,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for sspicli.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":917,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for sspicli.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":919,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for sspicli.dll from: C:\\Factorio/bin/Debugx64vsbt/\\sspicli.pdb\\d18bf0dccfb2c0dc7d75996e6fc99a0f1\\","percentage":0}} <- (E) {"seq":921,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for sspicli.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\sspicli.pdb\\d18bf0dccfb2c0dc7d75996e6fc99a0f1\\","percentage":0}} <- (E) {"seq":923,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for mswsock.dll","percentage":0}} <- (E) {"seq":925,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for mswsock.dll from: C:\\Factorio\\bin\\Debugx64vsbt","percentage":0}} <- (E) {"seq":927,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for mswsock.dll from: C:\\Windows\\System32\\","percentage":0}} <- (E) {"seq":928,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\mswsock.dll'. \n"}} <- (E) {"seq":931,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for mswsock.dll from: C:\\WINDOWS\\","percentage":0}} Loaded 'C:\Windows\System32\mswsock.dll'. <- (E) {"seq":933,"type":"event","event":"module","body":{"reason":"new","module":{"id":1038,"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":935,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for mswsock.dll from: C:\\WINDOWS\\symbols\\dll\\","percentage":0}} <- (E) {"seq":937,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for mswsock.dll from: C:\\WINDOWS\\dll\\","percentage":0}} <- (E) {"seq":939,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for mswsock.dll from: C:\\Factorio/bin/Debugx64vsbt/","percentage":0}} <- (E) {"seq":941,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for mswsock.dll from: C:\\Factorio/bin/Debugx64vsbt/\\mswsock.pdb\\bcc0796e6035fc89ce7531fb953fb0721\\","percentage":0}} <- (E) {"seq":943,"type":"event","event":"progressUpdate","body":{"progressId":"2","message":"Loading symbols for mswsock.dll from: C:\\Factorio/bin/Debugx64vsbt/\\MicrosoftPublicSymbols\\mswsock.pdb\\bcc0796e6035fc89ce7531fb953fb0721\\","percentage":0}} -> (C) {"command":"threads","type":"request","seq":22} <- (R) {"seq":946,"type":"response","request_seq":22,"success":true,"command":"threads","body":{"threads":[{"id":2620,"name":"Thread #2620"},{"id":21052,"name":"Thread #21052"},{"id":24128,"name":"Thread #24128"},{"id":5560,"name":"Thread #5560"},{"id":3036,"name":"Thread #3036"},{"id":9096,"name":"Thread #9096"},{"id":2656,"name":"Thread #2656"},{"id":20172,"name":"Thread #20172"},{"id":23824,"name":"Thread #23824"},{"id":6048,"name":"Thread #6048"},{"id":7816,"name":"Thread #7816"}]}} <- (E) {"seq":948,"type":"event","event":"progressEnd","body":{"progressId":"2"}} <- (E) {"seq":950,"type":"event","event":"thread","body":{"reason":"exited","threadId":7816}} <- (E) {"seq":952,"type":"event","event":"thread","body":{"reason":"exited","threadId":6048}} <- (E) {"seq":954,"type":"event","event":"thread","body":{"reason":"exited","threadId":23824}} <- (E) {"seq":956,"type":"event","event":"thread","body":{"reason":"exited","threadId":20172}} <- (E) {"seq":958,"type":"event","event":"thread","body":{"reason":"exited","threadId":2656}} <- (E) {"seq":960,"type":"event","event":"thread","body":{"reason":"exited","threadId":9096}} <- (E) {"seq":962,"type":"event","event":"thread","body":{"reason":"exited","threadId":3036}} <- (E) {"seq":964,"type":"event","event":"thread","body":{"reason":"started","threadId":14136}} <- (E) {"seq":966,"type":"event","event":"thread","body":{"reason":"started","threadId":21520}} <- (E) {"seq":968,"type":"event","event":"thread","body":{"reason":"started","threadId":10416}} <- (E) {"seq":970,"type":"event","event":"thread","body":{"reason":"started","threadId":16920}} <- (E) {"seq":972,"type":"event","event":"thread","body":{"reason":"started","threadId":18296}} <- (E) {"seq":974,"type":"event","event":"thread","body":{"reason":"started","threadId":13644}} <- (E) {"seq":976,"type":"event","event":"thread","body":{"reason":"started","threadId":5192}} <- (E) {"seq":978,"type":"event","event":"thread","body":{"reason":"started","threadId":11964}} <- (E) {"seq":980,"type":"event","event":"thread","body":{"reason":"started","threadId":8952}} <- (E) {"seq":982,"type":"event","event":"thread","body":{"reason":"started","threadId":10724}} <- (E) {"seq":984,"type":"event","event":"thread","body":{"reason":"started","threadId":19076}} <- (E) {"seq":986,"type":"event","event":"thread","body":{"reason":"started","threadId":20592}} <- (E) {"seq":988,"type":"event","event":"thread","body":{"reason":"started","threadId":22944}} <- (E) {"seq":990,"type":"event","event":"thread","body":{"reason":"started","threadId":15580}} -> (C) {"command":"threads","type":"request","seq":23} <- (R) {"seq":993,"type":"response","request_seq":23,"success":true,"command":"threads","body":{"threads":[{"id":2620,"name":"Thread #2620"},{"id":21052,"name":"Thread #21052"},{"id":24128,"name":"Thread #24128"},{"id":5560,"name":"Thread #5560"},{"id":14136,"name":"Thread #14136"},{"id":21520,"name":"Thread #21520"},{"id":10416,"name":"Thread #10416"},{"id":16920,"name":"Thread #16920"},{"id":18296,"name":"Thread #18296"},{"id":13644,"name":"Thread #13644"},{"id":5192,"name":"Thread #5192"},{"id":11964,"name":"Thread #11964"},{"id":8952,"name":"Thread #8952"},{"id":10724,"name":"Thread #10724"},{"id":19076,"name":"Thread #19076"},{"id":20592,"name":"Thread #20592"},{"id":22944,"name":"Thread #22944"},{"id":15580,"name":"Thread #15580"}]}} <- (E) {"seq":995,"type":"event","event":"output","body":{"category":"console","output":"Unloaded 'C:\\Windows\\System32\\sspicli.dll'.\n"}} Unloaded 'C:\Windows\System32\sspicli.dll'. <- (E) {"seq":997,"type":"event","event":"module","body":{"reason":"removed","module":{"id":1037,"name":"sspicli.dll","path":"C:\\Windows\\System32\\sspicli.dll"}}} <- (E) {"seq":999,"type":"event","event":"output","body":{"category":"console","output":"Unloaded 'C:\\Windows\\System32\\secur32.dll'.\n"}} Unloaded 'C:\Windows\System32\secur32.dll'. <- (E) {"seq":1001,"type":"event","event":"module","body":{"reason":"removed","module":{"id":1036,"name":"secur32.dll","path":"C:\\Windows\\System32\\secur32.dll"}}} <- (E) {"seq":1003,"type":"event","event":"thread","body":{"reason":"exited","threadId":5560}} <- (E) {"seq":1005,"type":"event","event":"output","body":{"category":"console","output":"Unloaded 'C:\\Windows\\System32\\kernel.appcore.dll'.\n"}} Unloaded 'C:\Windows\System32\kernel.appcore.dll'. <- (E) {"seq":1007,"type":"event","event":"module","body":{"reason":"removed","module":{"id":1035,"name":"kernel.appcore.dll","path":"C:\\Windows\\System32\\kernel.appcore.dll"}}} <- (E) {"seq":1009,"type":"event","event":"output","body":{"category":"console","output":"Loaded 'C:\\Windows\\System32\\kernel.appcore.dll'. \n"}} Loaded 'C:\Windows\System32\kernel.appcore.dll'. <- (E) {"seq":1011,"type":"event","event":"module","body":{"reason":"new","module":{"id":1035,"name":"kernel.appcore.dll","path":"C:\\Windows\\System32\\kernel.appcore.dll","isUserCode":false,"version":"10.0.19041.546 (WinBuild.160101.0800)","symbolStatus":"Cannot find or open the PDB file."}}} <- (E) {"seq":1013,"type":"event","event":"thread","body":{"reason":"exited","threadId":21520}} <- (E) {"seq":1015,"type":"event","event":"thread","body":{"reason":"exited","threadId":14136}} <- (E) {"seq":1017,"type":"event","event":"thread","body":{"reason":"exited","threadId":24128}} <- (E) {"seq":1019,"type":"event","event":"thread","body":{"reason":"exited","threadId":21052}} <- (E) {"seq":1021,"type":"event","event":"thread","body":{"reason":"exited","threadId":16920}} <- (E) {"seq":1023,"type":"event","event":"thread","body":{"reason":"exited","threadId":10416}} <- (E) {"seq":1025,"type":"event","event":"thread","body":{"reason":"exited","threadId":15580}} <- (E) {"seq":1027,"type":"event","event":"thread","body":{"reason":"exited","threadId":20592}} <- (E) {"seq":1029,"type":"event","event":"thread","body":{"reason":"exited","threadId":19076}} <- (E) {"seq":1031,"type":"event","event":"thread","body":{"reason":"exited","threadId":8952}} <- (E) {"seq":1033,"type":"event","event":"thread","body":{"reason":"exited","threadId":5192}} <- (E) {"seq":1035,"type":"event","event":"thread","body":{"reason":"exited","threadId":13644}} <- (E) {"seq":1037,"type":"event","event":"thread","body":{"reason":"exited","threadId":22944}} <- (E) {"seq":1039,"type":"event","event":"thread","body":{"reason":"exited","threadId":10724}} <- (E) {"seq":1041,"type":"event","event":"thread","body":{"reason":"exited","threadId":11964}} <- (E) {"seq":1043,"type":"event","event":"thread","body":{"reason":"exited","threadId":18296}} <- (E) {"seq":1045,"type":"event","event":"output","body":{"category":"console","output":"The program '[18368] factorio-test.exe' has exited with code 0 (0x0).\n"}} The program '[18368] factorio-test.exe' has exited with code 0 (0x0). <- (E) {"seq":1047,"type":"event","event":"exited","body":{"exitCode":0}} <- (E) {"seq":1049,"type":"event","event":"terminated","body":{}} -> (C) {"command":"disconnect","arguments":{"restart":false,"terminateDebuggee":false},"type":"request","seq":24} <- (E) {"seq":1052,"type":"event","event":"output","body":{"category":"telemetry","output":"VS/Diagnostics/Debugger/vsdbg/DebugCompleted","data":{"VS.Diagnostics.Debugger.vsdbg.OSFamily":"Windows","VS.Diagnostics.Debugger.vsdbg.Version":"17.0.10709.2 commit:ea6333b6431d8b05cced1554007649d31adde019","VS.Diagnostics.Debugger.vsdbg.WindowsVersion":"10.0.19043","VS.Diagnostics.Debugger.vsdbg.DebugCompleted.BreakCounter":0,"VS.Diagnostics.Debugger.vsdbg.AdapterId":"cppvsdbg"}}} <- (R) {"seq":1054,"type":"response","request_seq":24,"success":true,"command":"disconnect"} ```

Any further launch attempts result in nothing in the debug console:

https://user-images.githubusercontent.com/11986037/129219670-77d4bc5d-090d-4819-9706-952381304b8d.mp4

WardenGnaw commented 3 years ago

This seems similar to:

I just ran the CodeLLDB debugger (which worked initially) then tried the C/C++ Extension debugger (which did not work) and then tried the CodeLLDB debugger again which then also stopped working.

From: https://github.com/microsoft/vscode/issues/130419#issuecomment-897011452

Where the first debug session succeeded, but subsequent ones are failing.

jonas-k commented 3 years ago

I noticed that with debug logging enabled, the recognized launch configuration is printed to the output panel of the C/C++ extension. This printed launch configuration contains the "noDebug": true flag even though the actual launch configuration doesn't contain it. "noDebug" is also true if explicitly set to false in the launch configuration. Does anyone know what causes this flag to be true? Could it have something to do with the executable in the program path?

Klonan commented 3 years ago

Well, I don't know what changed, but now it does not even want to start at all.

I close VSCode, restart the PC, load it up, and when I press run and debug, nothing.

https://user-images.githubusercontent.com/11986037/136182976-958a8d95-df0f-44e1-8a2f-bed7f8d75472.mp4

Nothing in debug console, nothing in any logs...

Klonan commented 3 years ago

I tried doing a build task manually and it was stuck in Fetching build tasks...

I turned off the Detect tasks,

Code_2021-10-06_12-13-22

Now it works again