Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

serverReadyAction debugWithChrome suddenly stopped working #95108

Closed
RockLife2000 opened this issue Apr 13, 2020 · 3 comments
Closed

serverReadyAction debugWithChrome suddenly stopped working #95108

RockLife2000 opened this issue Apr 13, 2020 · 3 comments
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug debug Debug viewlet, configurations, breakpoints, adapter issues verified Verification succeeded
Milestone

Comments

@RockLife2000
Copy link

RockLife2000 commented Apr 13, 2020

Issue Type: Bug

I have a node.js api with a SPA client that I have been developing for months without issue. Two days ago when I tried to debug the application my node app runs but chrome no longer is launched. After much trial and error to no avail I have built a clean new build of WIndows 10 (not insider), installed latest Chrome, Node, VSCode etc and built a very simple app to re-test and still get the same result. My index.js is below, as it my launch.json and trace file.

const express = require('express');
const app = express();
const port = 3000;

app.get('/', (req, res) => res.send('Hello World!'));

app.listen(port, () => console.log(`Example app listening at http://localhost:${port}`));

========================

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "trace": true,
            "type": "node",
            "request": "launch",
            "name": "Launch Program",
            "skipFiles": [
                "<node_internals>/**"
            ],
            "program": "${workspaceFolder}\\index.js",
            "serverReadyAction": {
                "pattern": "Example app listening at http://localhost:3000",
                "uriFormat": "https://localhost:3000/index.js",
                "action": "debugWithChrome",
                "webRoot": "${workspaceFolder}"
            }
        }
    ]
}
2020-4-13, 10:46:40.262 UTC
[10:46:40.263 UTC] OS: win32 x64
[10:46:40.263 UTC] Adapter node: v12.8.1 x64
[10:46:40.263 UTC] vscode-chrome-debug-core: 6.8.7
[10:46:40.263 UTC] node-debug2: 1.42.2
[10:46:40.263 UTC] From client: initialize({"clientID":"vscode","clientName":"Visual Studio Code","adapterID":"node2","pathFormat":"path","linesStartAt1":true,"columnsStartAt1":true,"supportsVariableType":true,"supportsVariablePaging":true,"supportsRunInTerminalRequest":true,"locale":"en-gb","supportsProgressReporting":true})
[10:46:40.263 UTC] To client: {"seq":0,"type":"response","request_seq":1,"command":"initialize","success":true,"body":{"exceptionBreakpointFilters":[{"label":"All Exceptions","filter":"all","default":false},{"label":"Uncaught Exceptions","filter":"uncaught","default":false}],"supportsConfigurationDoneRequest":true,"supportsSetVariable":true,"supportsConditionalBreakpoints":true,"supportsCompletionsRequest":true,"supportsHitConditionalBreakpoints":true,"supportsRestartFrame":true,"supportsExceptionInfoRequest":true,"supportsDelayedStackTraceLoading":true,"supportsValueFormattingOptions":true,"supportsEvaluateForHovers":true,"supportsLoadedSourcesRequest":true,"supportsBreakpointLocationsRequest":false,"supportsLogPoints":true,"supportsTerminateRequest":false}}
[10:46:40.263 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"telemetry","output":"ClientRequest/initialize","data":{"Versions.DebugAdapterCore":"6.8.7","Versions.DebugAdapter":"1.42.2","successful":"true","timeTakenInMilliseconds":"5.4552","requestType":"request"}}}
[10:46:40.263 UTC] From client: launch({"trace":true,"type":"node2","request":"launch","name":"Launch Program","skipFiles":["<node_internals>/**"],"program":"C:\\Users\\Steve\\Documents\\Github\\Test\\index.js","serverReadyAction":{"pattern":"Example app listening at http://localhost:3000","uriFormat":"https://localhost:3000/index.js","action":"debugWithChrome","webRoot":"C:\\Users\\Steve\\Documents\\Github\\Test"},"cwd":"c:\\Users\\Steve\\Documents\\Github\\Test","logFilePath":"c:\\Users\\Steve\\AppData\\Roaming\\Code\\logs\\20200413T103906\\exthost1\\ms-vscode.node-debug\\debugadapter-legacy.txt","__debuggablePatterns":["*.js","*.es6","*.jsx","*.mjs"],"__workspaceFolder":"C:\\Users\\Steve\\Documents\\Github\\Test","__nodeVersion":"v12.16.2","__sessionId":"1792903c-a7cf-4dc1-8c75-c091affbc4a1"})
[10:46:40.263 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"telemetry","output":"debugStarted","data":{"Versions.DebugAdapterCore":"6.8.7","Versions.DebugAdapter":"1.42.2","request":"launch","args":["trace","type","request","name","skipFiles","program","serverReadyAction","cwd","logFilePath","__debuggablePatterns","__workspaceFolder","__nodeVersion","__sessionId","enableSourceMapCaching","sourceMapPathOverrides","skipFileRegExps","smartStep","sourceMaps","showAsyncStacks"]}}}
[10:46:40.263 UTC] Launch: Resolving programPath: C:\Users\Steve\Documents\Github\Test\index.js
[10:46:40.263 UTC] Launch: program 'C:\Users\Steve\Documents\Github\Test\index.js' seems to be the generated file
[10:46:40.265 UTC] Using --inspect-brk, Node version v12.16.2 detected
[10:46:40.266 UTC] C:\Program Files\nodejs\node.exe --inspect-brk=8855 index.js 
[10:46:40.271 UTC] To client: {"seq":0,"type":"event","event":"process","body":{"name":"","systemProcessId":9604}}
[10:46:40.272 UTC] Getting browser and debug protocol version via http://127.0.0.1:8855/json/version
[10:46:40.278 UTC] Discovering targets via http://127.0.0.1:8855/json/list
[10:46:40.329 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"stderr","output":"Debugger listening on"}}
[10:46:40.329 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"stderr","output":" ws://127.0.0.1:8855/41476c8d-cf06-4d56-b54d-68bb355d2e9b\r\nFor help, see: https://nodejs.org/en/docs/inspector\r\n"}}
[10:46:40.784 UTC] Got browser version: node.js/v12.16.2
[10:46:40.784 UTC] Got debug protocol version: 1.1
[10:46:40.784 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"telemetry","output":"targetDebugProtocolVersion","data":{"Versions.DebugAdapterCore":"6.8.7","Versions.DebugAdapter":"1.42.2"}}}
[10:46:40.787 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"telemetry","output":"targetCount","data":{"Versions.DebugAdapterCore":"6.8.7","Versions.DebugAdapter":"1.42.2","numTargets":1}}}
[10:46:40.787 UTC] Attaching to target: {"description":"node.js instance","devtoolsFrontendUrl":"chrome-devtools://devtools/bundled/js_app.html?experiments=true&v8only=true&ws=localhost/41476c8d-cf06-4d56-b54d-68bb355d2e9b","devtoolsFrontendUrlCompat":"chrome-devtools://devtools/bundled/inspector.html?experiments=true&v8only=true&ws=localhost/41476c8d-cf06-4d56-b54d-68bb355d2e9b","faviconUrl":"https://nodejs.org/static/images/favicons/favicon.ico","id":"41476c8d-cf06-4d56-b54d-68bb355d2e9b","title":"index.js","type":"node","url":"file://C:_Users_Steve_Documents_Github_Test_index.js","webSocketDebuggerUrl":"ws://127.0.0.1:8855/41476c8d-cf06-4d56-b54d-68bb355d2e9b","version":{}}
[10:46:40.787 UTC] WebSocket Url: ws://127.0.0.1:8855/41476c8d-cf06-4d56-b54d-68bb355d2e9b
[10:46:40.797 UTC] → To target: "{\"id\":1,\"method\":\"Console.enable\"}"
[10:46:40.797 UTC] → To target: "{\"id\":2,\"method\":\"Debugger.enable\"}"
[10:46:40.797 UTC] → To target: "{\"id\":3,\"method\":\"Runtime.enable\"}"
[10:46:40.797 UTC] → To target: "{\"id\":4,\"method\":\"Log.enable\"}"
[10:46:40.797 UTC] → To target: "{\"id\":5,\"method\":\"Runtime.runIfWaitingForDebugger\"}"
[10:46:40.797 UTC] → To target: "{\"id\":6,\"method\":\"Runtime.run\"}"
[10:46:40.797 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"stderr","output":"Debugger attached.\r\n"}}
[10:46:40.798 UTC] ← From target: {"id":1,"result":{}}
[10:46:40.799 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"4","url":"internal/per_context/primordials.js","startLine":0,"startColumn":0,"endLine":167,"endColumn":0,"executionContextId":0,"hash":"0bfcd819769cd19c580c908296db5bf15ee33a94","isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":4599}}
[10:46:40.801 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"5","url":"internal/per_context/domexception.js","startLine":0,"startColumn":0,"endLine":121,"endColumn":0,"executionContextId":0,"hash":"39f6c1b96764c57d61fb38e218af66a74201ebc0","isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3753}}
[10:46:40.802 UTC] ← From target: {"id":2,"result":{"debuggerId":"(9A25E460051C6609918C0D0C75A2AF57)"}}
[10:46:40.802 UTC] ← From target: {"method":"Runtime.executionContextCreated","params":{"context":{"id":1,"origin":"","name":"C:\\Program Files\\nodejs\\node.exe[9604]","auxData":{"isDefault":true}}}}
[10:46:40.802 UTC] ← From target: {"id":3,"result":{}}
[10:46:40.802 UTC] Paths.scriptParsed: could not resolve internal/per_context/primordials.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.802 UTC] Paths.scriptParsed: could not resolve internal/per_context/domexception.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.804 UTC] ← From target: {"error":{"code":-32601,"message":"'Log.enable' wasn't found"},"id":4}
[10:46:40.804 UTC] ← From target: {"id":5,"result":{}}
[10:46:40.804 UTC] ← From target: {"error":{"code":-32601,"message":"'Runtime.run' wasn't found"},"id":6}
[10:46:40.804 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"6","url":"internal/bootstrap/loaders.js","startLine":0,"startColumn":0,"endLine":321,"endColumn":0,"executionContextId":1,"hash":"15c158723b96a3a0270d261b42f5879d45cba25f","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":10523}}
[10:46:40.805 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"7","url":"internal/bootstrap/node.js","startLine":0,"startColumn":0,"endLine":391,"endColumn":0,"executionContextId":1,"hash":"0a2bcca485f0bc4c3a40408b746c344d5ff00b6f","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":13614}}
[10:46:40.805 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"8","url":"internal/errors.js","startLine":0,"startColumn":0,"endLine":1391,"endColumn":0,"executionContextId":1,"hash":"3f4eeaa22f2cc77a414ee0517be7c45f5292acfa","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":51068,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.806 UTC] → To target: "{\"id\":7,\"method\":\"Debugger.getPossibleBreakpoints\",\"params\":{\"start\":{\"scriptId\":\"6\",\"lineNumber\":0,\"columnNumber\":0},\"end\":{\"scriptId\":\"6\",\"lineNumber\":1,\"columnNumber\":0},\"restrictToFunction\":false}}"
[10:46:40.806 UTC] Paths.scriptParsed: could not resolve internal/bootstrap/loaders.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.806 UTC] Paths.scriptParsed: could not resolve internal/bootstrap/node.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.806 UTC] Paths.scriptParsed: could not resolve internal/errors.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.807 UTC] → To target: "{\"id\":8,\"method\":\"Debugger.setBlackboxPatterns\",\"params\":{\"patterns\":[\"^(?!\\\\/)(?![a-zA-Z]:)(?!file:\\\\/\\\\/\\\\/)(.*[/\\\\\\\\])?\"]}}"
[10:46:40.807 UTC] → To target: "{\"id\":9,\"method\":\"Schema.getDomains\"}"
[10:46:40.808 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"9","url":"internal/util.js","startLine":0,"startColumn":0,"endLine":439,"endColumn":0,"executionContextId":1,"hash":"09fb978e48c4c5843b5fdc8f522bcc3b540a45a2","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":12740,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.808 UTC] Paths.scriptParsed: could not resolve internal/util.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.813 UTC] ← From target: {"id":7,"result":{"locations":[]}}
[10:46:40.814 UTC] ← From target: {"id":8,"result":{}}
[10:46:40.814 UTC] ← From target: {"id":9,"result":{"domains":[{"name":"Runtime","version":"1.3"},{"name":"Debugger","version":"1.3"},{"name":"Profiler","version":"1.3"},{"name":"HeapProfiler","version":"1.3"},{"name":"Schema","version":"1.3"}]}}
[10:46:40.814 UTC] → To target: "{\"id\":10,\"method\":\"Debugger.setAsyncCallStackDepth\",\"params\":{\"maxDepth\":4}}"
[10:46:40.815 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"10","url":"events.js","startLine":0,"startColumn":0,"endLine":753,"endColumn":0,"executionContextId":1,"hash":"2d85470f50854f86097da4e4c782d1930f789ef3","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":21982,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.815 UTC] Paths.scriptParsed: could not resolve events.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.815 UTC] ← From target: {"id":10,"result":{}}
[10:46:40.816 UTC] 1586774800.816: Waiting for initial debugger pause
[10:46:40.816 UTC] → To target: "{\"id\":11,\"method\":\"Runtime.evaluate\",\"params\":{\"expression\":\"[process.pid, process.version, process.arch]\",\"returnByValue\":true,\"contextId\":1}}"
[10:46:40.816 UTC] To client: {"seq":0,"type":"event","event":"capabilities","body":{"capabilities":{"supportsStepBack":false}}}
[10:46:40.816 UTC] To client: {"seq":0,"type":"response","request_seq":2,"command":"launch","success":true}
[10:46:40.816 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"telemetry","output":"ClientRequest/launch","data":{"Versions.DebugAdapterCore":"6.8.7","Versions.DebugAdapter":"1.42.2","successful":"true","timeTakenInMilliseconds":"712.305301","requestType":"request"}}}
[10:46:40.817 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"11","url":"internal/util/inspect.js","startLine":0,"startColumn":0,"endLine":1882,"endColumn":0,"executionContextId":1,"hash":"3446ae8d3fafc3dc4e8321318c6a440a6aa52ee4","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":63651,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.817 UTC] Paths.scriptParsed: could not resolve internal/util/inspect.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.817 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"12","url":"","startLine":0,"startColumn":0,"endLine":0,"endColumn":44,"executionContextId":1,"hash":"1ec2f5336c8ffedc40f21120b8e6e15e813cdc57","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":44,"stackTrace":{"callFrames":[{"functionName":"","scriptId":"11","url":"internal/util/inspect.js","lineNumber":0,"columnNumber":0}]}}}
[10:46:40.818 UTC] ← From target: {"id":11,"result":{"result":{"type":"object","subtype":"error","className":"ReferenceError","description":"ReferenceError: process is not defined\n    at <anonymous>:1:2\n    at internal/util/inspect.js:1:1\n    at NativeModule.compileForInternalLoader (internal/bootstrap/loaders.js:279:7)\n    at nativeModuleRequire (internal/bootstrap/loaders.js:308:14)\n    at events.js:59:5\n    at NativeModule.compileForInternalLoader (internal/bootstrap/loaders.js:279:7)\n    at nativeModuleRequire (internal/bootstrap/loaders.js:308:14)\n    at setupProcessObject (internal/bootstrap/node.js:271:24)\n    at internal/bootstrap/node.js:52:1","objectId":"{\"injectedScriptId\":1,\"id\":1}"},"exceptionDetails":{"exceptionId":1,"text":"Uncaught","lineNumber":0,"columnNumber":1,"scriptId":"12","stackTrace":{"callFrames":[{"functionName":"","scriptId":"12","url":"","lineNumber":0,"columnNumber":1},{"functionName":"","scriptId":"11","url":"internal/util/inspect.js","lineNumber":0,"columnNumber":0},{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":278,"columnNumber":6},{"functionName":"nativeModuleRequire","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":307,"columnNumber":13},{"functionName":"","scriptId":"10","url":"events.js","lineNumber":58,"columnNumber":4},{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":278,"columnNumber":6},{"functionName":"nativeModuleRequire","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":307,"columnNumber":13},{"functionName":"setupProcessObject","scriptId":"7","url":"internal/bootstrap/node.js","lineNumber":270,"columnNumber":23},{"functionName":"","scriptId":"7","url":"internal/bootstrap/node.js","lineNumber":51,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"ReferenceError","description":"ReferenceError: process is not defined\n    at <anonymous>:1:2\n    at internal/util/inspect.js:1:1\n    at NativeModule.compileForInternalLoader (internal/bootstrap/loaders.js:279:7)\n    at nativeModuleRequire (internal/bootstrap/loaders.js:308:14)\n    at events.js:59:5\n    at NativeModule.compileForInternalLoader (internal/bootstrap/loaders.js:279:7)\n    at nativeModuleRequire (internal/bootstrap/loaders.js:308:14)\n    at setupProcessObject (internal/bootstrap/node.js:271:24)\n    at internal/bootstrap/node.js:52:1","objectId":"{\"injectedScriptId\":1,\"id\":2}"}}}}
[10:46:40.819 UTC] Got expected exception: `process is not defined`. Will try again later.
[10:46:40.819 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"13","url":"internal/util/types.js","startLine":0,"startColumn":0,"endLine":81,"endColumn":0,"executionContextId":1,"hash":"22488d990bd1ee3c7f0fd70254d1f03c30c5609b","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1974,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.819 UTC] Paths.scriptParsed: could not resolve internal/util/types.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.819 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"14","url":"internal/assert.js","startLine":0,"startColumn":0,"endLine":25,"endColumn":0,"executionContextId":1,"hash":"0f0aec0373b93a2002ea2ece86be683737978f9a","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":499,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.819 UTC] Paths.scriptParsed: could not resolve internal/assert.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.823 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"15","url":"buffer.js","startLine":0,"startColumn":0,"endLine":1219,"endColumn":0,"executionContextId":1,"hash":"1e8732f3837f3c40187a2d701b94643e0ea9b0a2","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":36616,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.823 UTC] Paths.scriptParsed: could not resolve buffer.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.824 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"16","url":"internal/validators.js","startLine":0,"startColumn":0,"endLine":158,"endColumn":0,"executionContextId":1,"hash":"3878bed15d1336cf7a1a51f6b3869ef166b4de1c","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":4538,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.824 UTC] Paths.scriptParsed: could not resolve internal/validators.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.825 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"17","url":"internal/buffer.js","startLine":0,"startColumn":0,"endLine":1013,"endColumn":0,"executionContextId":1,"hash":"30ac17e32f94ef4b506dc10cb5708bfa7a34991e","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":29425,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.825 UTC] Paths.scriptParsed: could not resolve internal/buffer.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.827 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"18","url":"internal/process/per_thread.js","startLine":0,"startColumn":0,"endLine":362,"endColumn":0,"executionContextId":1,"hash":"037dd9304911849936903d8a5a0291db7b9513f1","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":10895,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.828 UTC] Paths.scriptParsed: could not resolve internal/process/per_thread.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.828 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"19","url":"internal/async_hooks.js","startLine":0,"startColumn":0,"endLine":450,"endColumn":0,"executionContextId":1,"hash":"004735dc88283b6b1d06ea5515b77eb75a044699","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":15572,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.828 UTC] Paths.scriptParsed: could not resolve internal/async_hooks.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.829 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"20","url":"internal/process/task_queues.js","startLine":0,"startColumn":0,"endLine":187,"endColumn":0,"executionContextId":1,"hash":"161a8e4727cf130681ced21b102b548a5e6a66f7","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":5009,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.829 UTC] Paths.scriptParsed: could not resolve internal/process/task_queues.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.829 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"21","url":"internal/process/promises.js","startLine":0,"startColumn":0,"endLine":264,"endColumn":0,"executionContextId":1,"hash":"31eee5bd595adf3d5c63b0a8994886eb0287a30b","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":8647,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.830 UTC] Paths.scriptParsed: could not resolve internal/process/promises.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.830 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"22","url":"internal/fixed_queue.js","startLine":0,"startColumn":0,"endLine":117,"endColumn":0,"executionContextId":1,"hash":"281f73a21cbeea92595c7c9a89f398c27bb8a2f4","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":4330,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.830 UTC] Paths.scriptParsed: could not resolve internal/fixed_queue.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.830 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"23","url":"internal/console/global.js","startLine":0,"startColumn":0,"endLine":51,"endColumn":0,"executionContextId":1,"hash":"0b4a0fb67593f7654ee72d4574736f107e388c3c","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1849,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.830 UTC] Paths.scriptParsed: could not resolve internal/console/global.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.831 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"24","url":"internal/console/constructor.js","startLine":0,"startColumn":0,"endLine":560,"endColumn":0,"executionContextId":1,"hash":"1066d9a3418c9a2e8215555356be23d7062e7847","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":17387,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.831 UTC] Paths.scriptParsed: could not resolve internal/console/constructor.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.831 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"25","url":"internal/util/inspector.js","startLine":0,"startColumn":0,"endLine":64,"endColumn":0,"executionContextId":1,"hash":"1b54f4ad773bec1a0bb777cdb0fcc8e471dd6540","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2167,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.831 UTC] Paths.scriptParsed: could not resolve internal/util/inspector.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.833 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"26","url":"internal/url.js","startLine":0,"startColumn":0,"endLine":1442,"endColumn":0,"executionContextId":1,"hash":"18549e42a5b3372d5d0194b575c705e364cf2f71","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":42048,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.833 UTC] Paths.scriptParsed: could not resolve internal/url.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.833 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"27","url":"internal/querystring.js","startLine":0,"startColumn":0,"endLine":100,"endColumn":0,"executionContextId":1,"hash":"22e87a5f531bf6374e5b388d9937a6dc5cf91664","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2900,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.834 UTC] Paths.scriptParsed: could not resolve internal/querystring.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.834 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"28","url":"internal/constants.js","startLine":0,"startColumn":0,"endLine":52,"endColumn":0,"executionContextId":1,"hash":"16e67f83a6a34cb9120fc9fc76d488ce1a35444f","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1504,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.834 UTC] Paths.scriptParsed: could not resolve internal/constants.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.835 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"29","url":"path.js","startLine":0,"startColumn":0,"endLine":1375,"endColumn":0,"executionContextId":1,"hash":"0a9db0258aa772bd58e3e7d19a71c65426bf9dc0","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":43181,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.835 UTC] Paths.scriptParsed: could not resolve path.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.836 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"30","url":"internal/encoding.js","startLine":0,"startColumn":0,"endLine":570,"endColumn":0,"executionContextId":1,"hash":"2b0cdd2d6bdcaed160cd3e16c93c9ce1464092a7","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":16474,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.837 UTC] Paths.scriptParsed: could not resolve internal/encoding.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.837 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"31","url":"timers.js","startLine":0,"startColumn":0,"endLine":327,"endColumn":0,"executionContextId":1,"hash":"3b43826d6f359c4b223acbde560b5c62041482ca","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":8682,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.837 UTC] Paths.scriptParsed: could not resolve timers.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.838 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"32","url":"internal/linkedlist.js","startLine":0,"startColumn":0,"endLine":54,"endColumn":0,"executionContextId":1,"hash":"339cd88a94393bd169180a9601ce4647776919b8","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1166,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.838 UTC] Paths.scriptParsed: could not resolve internal/linkedlist.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.838 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"33","url":"internal/timers.js","startLine":0,"startColumn":0,"endLine":615,"endColumn":0,"executionContextId":1,"hash":"372dcb1e51c802cb10ad74638b069ddd363a4633","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":18186,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.841 UTC] Paths.scriptParsed: could not resolve internal/timers.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.841 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"34","url":"internal/priority_queue.js","startLine":0,"startColumn":0,"endLine":128,"endColumn":0,"executionContextId":1,"hash":"0a10071b7a9c103f1ac613974635e52d140ea602","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3052,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.841 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"35","url":"internal/util/debuglog.js","startLine":0,"startColumn":0,"endLine":75,"endColumn":0,"executionContextId":1,"hash":"3fac7b5565b7a22c75b03a139fd7fad56784dafc","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2256,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.841 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"36","url":"internal/process/execution.js","startLine":0,"startColumn":0,"endLine":218,"endColumn":0,"executionContextId":1,"hash":"192c7fd45d761d7215365aa288301a672c9eb01a","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":7069,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.842 UTC] Paths.scriptParsed: could not resolve internal/priority_queue.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.842 UTC] Paths.scriptParsed: could not resolve internal/util/debuglog.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.842 UTC] Paths.scriptParsed: could not resolve internal/process/execution.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.842 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"37","url":"internal/process/warning.js","startLine":0,"startColumn":0,"endLine":141,"endColumn":0,"executionContextId":1,"hash":"3909c96340a1e9d93c204d1eb2e2b46b427fc29c","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":4094,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.842 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"38","url":"internal/bootstrap/switches/is_main_thread.js","startLine":0,"startColumn":0,"endLine":230,"endColumn":0,"executionContextId":1,"hash":"1fa914ce6294e50b33a35f18bada859229734397","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":6407}}
[10:46:40.843 UTC] Paths.scriptParsed: could not resolve internal/process/warning.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.843 UTC] Paths.scriptParsed: could not resolve internal/bootstrap/switches/is_main_thread.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.843 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"39","url":"internal/process/signal.js","startLine":0,"startColumn":0,"endLine":53,"endColumn":0,"executionContextId":1,"hash":"189f98035a3c7cac0b6d98e592770315815f6151","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1177,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.843 UTC] Paths.scriptParsed: could not resolve internal/process/signal.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.844 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"40","url":"internal/bootstrap/switches/does_own_process_state.js","startLine":0,"startColumn":0,"endLine":130,"endColumn":0,"executionContextId":1,"hash":"185150585615e6b0081e89b58a0c6ac76153831e","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3576}}
[10:46:40.844 UTC] Paths.scriptParsed: could not resolve internal/bootstrap/switches/does_own_process_state.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.844 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"41","url":"internal/main/run_main_module.js","startLine":0,"startColumn":0,"endLine":18,"endColumn":0,"executionContextId":1,"hash":"0c647fcc270896f32530fe850b09b54c42f0530f","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":723}}
[10:46:40.845 UTC] Paths.scriptParsed: could not resolve internal/main/run_main_module.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.845 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"42","url":"internal/bootstrap/pre_execution.js","startLine":0,"startColumn":0,"endLine":463,"endColumn":0,"executionContextId":1,"hash":"066cd01a16dcb8db51a8d3f9857ed542598a630a","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":15486,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.845 UTC] Paths.scriptParsed: could not resolve internal/bootstrap/pre_execution.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.846 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"43","url":"internal/options.js","startLine":0,"startColumn":0,"endLine":18,"endColumn":0,"executionContextId":1,"hash":"37dc72856564de3240c7f03d678d05ce45737db1","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":330,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.846 UTC] Paths.scriptParsed: could not resolve internal/options.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.847 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"44","url":"internal/inspector_async_hook.js","startLine":0,"startColumn":0,"endLine":76,"endColumn":0,"executionContextId":1,"hash":"26a7def3590e4d1a09191f02bcdb981021e1207c","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2040,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.847 UTC] Paths.scriptParsed: could not resolve internal/inspector_async_hook.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.848 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"45","url":"async_hooks.js","startLine":0,"startColumn":0,"endLine":221,"endColumn":0,"executionContextId":1,"hash":"3c31d02d3ab8b3fe301c3f19acfa9930195f6e57","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":6344,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.848 UTC] Paths.scriptParsed: could not resolve async_hooks.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.848 UTC] From client: loadedSources(undefined)
[10:46:40.857 UTC] To client: {"seq":0,"type":"response","request_seq":3,"command":"loadedSources","success":true,"body":{"sources":[{"name":"VM12","path":"<eval>/VM12","sourceReference":1008,"origin":"read-only content from Node.js"},{"name":"async_hooks.js","path":"<node_internals>/async_hooks.js","sourceReference":1041,"origin":"read-only core module"},{"name":"buffer.js","path":"<node_internals>/buffer.js","sourceReference":1011,"origin":"read-only core module"},{"name":"events.js","path":"<node_internals>/events.js","sourceReference":1006,"origin":"read-only core module"},{"name":"assert.js","path":"<node_internals>/internal/assert.js","sourceReference":1010,"origin":"read-only core module"},{"name":"async_hooks.js","path":"<node_internals>/internal/async_hooks.js","sourceReference":1015,"origin":"read-only core module"},{"name":"loaders.js","path":"<node_internals>/internal/bootstrap/loaders.js","sourceReference":1002,"origin":"read-only core module"},{"name":"node.js","path":"<node_internals>/internal/bootstrap/node.js","sourceReference":1003,"origin":"read-only core module"},{"name":"pre_execution.js","path":"<node_internals>/internal/bootstrap/pre_execution.js","sourceReference":1038,"origin":"read-only core module"},{"name":"does_own_process_state.js","path":"<node_internals>/internal/bootstrap/switches/does_own_process_state.js","sourceReference":1036,"origin":"read-only core module"},{"name":"is_main_thread.js","path":"<node_internals>/internal/bootstrap/switches/is_main_thread.js","sourceReference":1034,"origin":"read-only core module"},{"name":"buffer.js","path":"<node_internals>/internal/buffer.js","sourceReference":1013,"origin":"read-only core module"},{"name":"constructor.js","path":"<node_internals>/internal/console/constructor.js","sourceReference":1020,"origin":"read-only core module"},{"name":"global.js","path":"<node_internals>/internal/console/global.js","sourceReference":1019,"origin":"read-only core module"},{"name":"constants.js","path":"<node_internals>/internal/constants.js","sourceReference":1024,"origin":"read-only core module"},{"name":"encoding.js","path":"<node_internals>/internal/encoding.js","sourceReference":1026,"origin":"read-only core module"},{"name":"errors.js","path":"<node_internals>/internal/errors.js","sourceReference":1004,"origin":"read-only core module"},{"name":"fixed_queue.js","path":"<node_internals>/internal/fixed_queue.js","sourceReference":1018,"origin":"read-only core module"},{"name":"inspector_async_hook.js","path":"<node_internals>/internal/inspector_async_hook.js","sourceReference":1040,"origin":"read-only core module"},{"name":"linkedlist.js","path":"<node_internals>/internal/linkedlist.js","sourceReference":1028,"origin":"read-only core module"},{"name":"run_main_module.js","path":"<node_internals>/internal/main/run_main_module.js","sourceReference":1037,"origin":"read-only core module"},{"name":"options.js","path":"<node_internals>/internal/options.js","sourceReference":1039,"origin":"read-only core module"},{"name":"domexception.js","path":"<node_internals>/internal/per_context/domexception.js","sourceReference":1001,"origin":"read-only core module"},{"name":"primordials.js","path":"<node_internals>/internal/per_context/primordials.js","sourceReference":1000,"origin":"read-only core module"},{"name":"priority_queue.js","path":"<node_internals>/internal/priority_queue.js","sourceReference":1030,"origin":"read-only core module"},{"name":"execution.js","path":"<node_internals>/internal/process/execution.js","sourceReference":1032,"origin":"read-only core module"},{"name":"per_thread.js","path":"<node_internals>/internal/process/per_thread.js","sourceReference":1014,"origin":"read-only core module"},{"name":"promises.js","path":"<node_internals>/internal/process/promises.js","sourceReference":1017,"origin":"read-only core module"},{"name":"signal.js","path":"<node_internals>/internal/process/signal.js","sourceReference":1035,"origin":"read-only core module"},{"name":"task_queues.js","path":"<node_internals>/internal/process/task_queues.js","sourceReference":1016,"origin":"read-only core module"},{"name":"warning.js","path":"<node_internals>/internal/process/warning.js","sourceReference":1033,"origin":"read-only core module"},{"name":"querystring.js","path":"<node_internals>/internal/querystring.js","sourceReference":1023,"origin":"read-only core module"},{"name":"timers.js","path":"<node_internals>/internal/timers.js","sourceReference":1029,"origin":"read-only core module"},{"name":"url.js","path":"<node_internals>/internal/url.js","sourceReference":1022,"origin":"read-only core module"},{"name":"util.js","path":"<node_internals>/internal/util.js","sourceReference":1005,"origin":"read-only core module"},{"name":"debuglog.js","path":"<node_internals>/internal/util/debuglog.js","sourceReference":1031,"origin":"read-only core module"},{"name":"inspect.js","path":"<node_internals>/internal/util/inspect.js","sourceReference":1007,"origin":"read-only core module"},{"name":"inspector.js","path":"<node_internals>/internal/util/inspector.js","sourceReference":1021,"origin":"read-only core module"},{"name":"types.js","path":"<node_internals>/internal/util/types.js","sourceReference":1009,"origin":"read-only core module"},{"name":"validators.js","path":"<node_internals>/internal/validators.js","sourceReference":1012,"origin":"read-only core module"},{"name":"path.js","path":"<node_internals>/path.js","sourceReference":1025,"origin":"read-only core module"},{"name":"timers.js","path":"<node_internals>/timers.js","sourceReference":1027,"origin":"read-only core module"}]}}
[10:46:40.858 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"telemetry","output":"ClientRequest/loadedSources","data":{"Versions.DebugAdapterCore":"6.8.7","Versions.DebugAdapter":"1.42.2","successful":"true","timeTakenInMilliseconds":"8.8586","requestType":"request"}}}
[10:46:40.859 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"46","url":"internal/modules/cjs/loader.js","startLine":0,"startColumn":0,"endLine":1315,"endColumn":0,"executionContextId":1,"hash":"1fb039a7281ac83a2b10d6942664e7ee7c7a967d","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":42368,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.860 UTC] Paths.scriptParsed: could not resolve internal/modules/cjs/loader.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.860 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"47","url":"internal/source_map/source_map_cache.js","startLine":0,"startColumn":0,"endLine":246,"endColumn":0,"executionContextId":1,"hash":"15c493b1376bf63c123ebd8f1e5d5d892d39bc97","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":8155,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.860 UTC] Paths.scriptParsed: could not resolve internal/source_map/source_map_cache.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.863 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"48","url":"fs.js","startLine":0,"startColumn":0,"endLine":1973,"endColumn":0,"executionContextId":1,"hash":"0250f4114fe76bb94e9ad3126b929f5f5b80466a","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":54456,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.864 UTC] Paths.scriptParsed: could not resolve fs.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.866 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"49","url":"internal/fs/utils.js","startLine":0,"startColumn":0,"endLine":623,"endColumn":0,"executionContextId":1,"hash":"17987d9faa2b5371199fc5cd4ba121cd11a783eb","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":17624,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.866 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"50","url":"internal/fs/dir.js","startLine":0,"startColumn":0,"endLine":236,"endColumn":0,"executionContextId":1,"hash":"2e6576b56f457fd96b4e9e7ab7d553e04f79a287","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":5797,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.866 UTC] Paths.scriptParsed: could not resolve internal/fs/utils.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.866 UTC] Paths.scriptParsed: could not resolve internal/fs/dir.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.866 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"51","url":"internal/modules/cjs/helpers.js","startLine":0,"startColumn":0,"endLine":188,"endColumn":0,"executionContextId":1,"hash":"07479e34961cc77366784aecc9920ab27708bb20","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":5575,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.867 UTC] Paths.scriptParsed: could not resolve internal/modules/cjs/helpers.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.867 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"52","url":"url.js","startLine":0,"startColumn":0,"endLine":982,"endColumn":0,"executionContextId":1,"hash":"34a3ad389c5cb9b707ebfeb85ead7a8d55068fa2","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":30897,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.867 UTC] Paths.scriptParsed: could not resolve url.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.867 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"53","url":"internal/idna.js","startLine":0,"startColumn":0,"endLine":9,"endColumn":0,"executionContextId":1,"hash":"043126774e53b9a25fca251784b2c5f42fca84c2","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":273,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.868 UTC] Paths.scriptParsed: could not resolve internal/idna.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.868 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"54","url":"vm.js","startLine":0,"startColumn":0,"endLine":423,"endColumn":0,"executionContextId":1,"hash":"1fd8c5530732f0837af701d94bad54ff0cd2dcf3","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":13298,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.868 UTC] Paths.scriptParsed: could not resolve vm.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.869 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"55","url":"internal/modules/run_main.js","startLine":0,"startColumn":0,"endLine":80,"endColumn":0,"executionContextId":1,"hash":"0c1b305c66a76f5d67fa5bd5108d06d21b5db89a","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2651,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:40.870 UTC] Paths.scriptParsed: could not resolve internal/modules/run_main.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:40.892 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"56","url":"file:///c:/<path_to�>/Test/index.js","startLine":0,"startColumn":0,"endLine":6,"endColumn":89,"executionContextId":1,"hash":"15e8b81c2633fc601b380fd6c2dee70e0d0cfa93","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":229,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:40.894 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/index.js to c:\Users\Steve\Documents\Github\Test\index.js. pathMapping/webroot: undefined
[10:46:40.910 UTC] ← From target: {"method":"Debugger.paused","params":{"callFrames":[{"callFrameId":"{\"ordinal\":0,\"injectedScriptId\":1}","functionName":"","functionLocation":{"scriptId":"56","lineNumber":0,"columnNumber":0},"location":{"scriptId":"56","lineNumber":0,"columnNumber":16},"url":"file:///c:/<path_to�>/Test/index.js","scopeChain":[{"type":"local","object":{"type":"object","className":"Object","description":"Object","objectId":"{\"injectedScriptId\":1,\"id\":3}"},"startLocation":{"scriptId":"56","lineNumber":0,"columnNumber":0},"endLocation":{"scriptId":"56","lineNumber":6,"columnNumber":89}},{"type":"global","object":{"type":"object","className":"global","description":"global","objectId":"{\"injectedScriptId\":1,\"id\":4}"}}],"this":{"type":"object","className":"Object","description":"Object","objectId":"{\"injectedScriptId\":1,\"id\":5}"}},{"callFrameId":"{\"ordinal\":1,\"injectedScriptId\":1}","functionName":"Module._compile","functionLocation":{"scriptId":"46","lineNumber":1109,"columnNumber":36},"location":{"scriptId":"46","lineNumber":1152,"columnNumber":13},"url":"internal/modules/cjs/loader.js","scopeChain":[{"type":"local","object":{"type":"object","className":"Object","description":"Object","objectId":"{\"injectedScriptId\":1,\"id\":6}"},"name":"Module._compile","startLocation":{"scriptId":"46","lineNumber":1109,"columnNumber":36},"endLocation":{"scriptId":"46","lineNumber":1161,"columnNumber":1}},{"type":"closure","object":{"type":"object","className":"Object","description":"Object","objectId":"{\"injectedScriptId\":1,\"id\":7}"},"startLocation":{"scriptId":"46","lineNumber":0,"columnNumber":0},"endLocation":{"scriptId":"46","lineNumber":1315,"columnNumber":0}},{"type":"global","object":{"type":"object","className":"global","description":"global","objectId":"{\"injectedScriptId\":1,\"id\":8}"}}],"this":{"type":"object","className":"Module","description":"Module","objectId":"{\"injectedScriptId\":1,\"id\":9}"}},{"callFrameId":"{\"ordinal\":2,\"injectedScriptId\":1}","functionName":"Module._extensions..js","functionLocation":{"scriptId":"46","lineNumber":1164,"columnNumber":36},"location":{"scriptId":"46","lineNumber":1175,"columnNumber":9},"url":"internal/modules/cjs/loader.js","scopeChain":[{"type":"local","object":{"type":"object","className":"Object","description":"Object","objectId":"{\"injectedScriptId\":1,\"id\":10}"},"name":"Module._extensions..js","startLocation":{"scriptId":"46","lineNumber":1164,"columnNumber":36},"endLocation":{"scriptId":"46","lineNumber":1176,"columnNumber":1}},{"type":"closure","object":{"type":"object","className":"Object","description":"Object","objectId":"{\"injectedScriptId\":1,\"id\":11}"},"startLocation":{"scriptId":"46","lineNumber":0,"columnNumber":0},"endLocation":{"scriptId":"46","lineNumber":1315,"columnNumber":0}},{"type":"global","object":{"type":"object","className":"global","description":"global","objectId":"{\"injectedScriptId\":1,\"id\":12}"}}],"this":{"type":"object","className":"Object","description":"Object","objectId":"{\"injectedScriptId\":1,\"id\":13}"}},{"callFrameId":"{\"ordinal\":3,\"injectedScriptId\":1}","functionName":"Module.load","functionLocation":{"scriptId":"46","lineNumber":987,"columnNumber":32},"location":{"scriptId":"46","lineNumber":999,"columnNumber":31},"url":"internal/modules/cjs/loader.js","scopeChain":[{"type":"local","object":{"type":"object","className":"Object","description":"Object","objectId":"{\"injectedScriptId\":1,\"id\":14}"},"name":"Module.load","startLocation":{"scriptId":"46","lineNumber":987,"columnNumber":32},"endLocation":{"scriptId":"46","lineNumber":1028,"columnNumber":1}},{"type":"closure","object":{"type":"object","className":"Object","description":"Object","objectId":"{\"injectedScriptId\":1,\"id\":15}"},"startLocation":{"scriptId":"46","lineNumber":0,"columnNumber":0},"endLocation":{"scriptId":"46","lineNumber":1315,"columnNumber":0}},{"type":"global","object":{"type":"object","className":"global","description":"global","objectId":"{\"injectedScriptId\":1,\"id\":16}"}}],"this":{"type":"object","className":"Module","description":"Module","objectId":"{\"injectedScriptId\":1,\"id\":17}"}},{"callFrameId":"{\"ordinal\":4,\"injectedScriptId\":1}","functionName":"Module._load","functionLocation":{"scriptId":"46","lineNumber":842,"columnNumber":23},"location":{"scriptId":"46","lineNumber":898,"columnNumber":13},"url":"internal/modules/cjs/loader.js","scopeChain":[{"type":"local","object":{"type":"object","className":"Object","description":"Object","objectId":"{\"injectedScriptId\":1,\"id\":18}"},"name":"Module._load","startLocation":{"scriptId":"46","lineNumber":842,"columnNumber":23},"endLocation":{"scriptId":"46","lineNumber":911,"columnNumber":1}},{"type":"closure","object":{"type":"object","className":"Object","description":"Object","objectId":"{\"injectedScriptId\":1,\"id\":19}"},"startLocation":{"scriptId":"46","lineNumber":0,"columnNumber":0},"endLocation":{"scriptId":"46","lineNumber":1315,"columnNumber":0}},{"type":"global","object":{"type":"object","className":"global","description":"global","objectId":"{\"injectedScriptId\":1,\"id\":20}"}}],"this":{"type":"function","className":"Function","description":"function Module(id = '', parent) {\r\n  this.id = id;\r\n  this.path = path.dirname(id);\r\n  this.exports = {};\r\n  this.parent = parent;\r\n  updateChildren(parent, this, false);\r\n  this.filename = null;\r\n  this.loaded = false;\r\n  this.children = [];\r\n}","objectId":"{\"injectedScriptId\":1,\"id\":21}"}},{"callFrameId":"{\"ordinal\":5,\"injectedScriptId\":1}","functionName":"executeUserEntryPoint","functionLocation":{"scriptId":"55","lineNumber":66,"columnNumber":30},"location":{"scriptId":"55","lineNumber":73,"columnNumber":11},"url":"internal/modules/run_main.js","scopeChain":[{"type":"block","object":{"type":"object","className":"Object","description":"Object","objectId":"{\"injectedScriptId\":1,\"id\":22}"},"name":"executeUserEntryPoint","startLocation":{"scriptId":"55","lineNumber":66,"columnNumber":55},"endLocation":{"scriptId":"55","lineNumber":75,"columnNumber":1}},{"type":"local","object":{"type":"object","className":"Object","description":"Object","objectId":"{\"injectedScriptId\":1,\"id\":23}"},"name":"executeUserEntryPoint","startLocation":{"scriptId":"55","lineNumber":66,"columnNumber":30},"endLocation":{"scriptId":"55","lineNumber":75,"columnNumber":1}},{"type":"closure","object":{"type":"object","className":"Object","description":"Object","objectId":"{\"injectedScriptId\":1,\"id\":24}"},"startLocation":{"scriptId":"55","lineNumber":0,"columnNumber":0},"endLocation":{"scriptId":"55","lineNumber":80,"columnNumber":0}},{"type":"global","object":{"type":"object","className":"global","description":"global","objectId":"{\"injectedScriptId\":1,\"id\":25}"}}],"this":{"type":"function","className":"Function","description":"function Module(id = '', parent) {\r\n  this.id = id;\r\n  this.path = path.dirname(id);\r\n  this.exports = {};\r\n  this.parent = parent;\r\n  updateChildren(parent, this, false);\r\n  this.filename = null;\r\n  this.loaded = false;\r\n  this.children = [];\r\n}","objectId":"{\"injectedScriptId\":1,\"id\":26}"}},{"callFrameId":"{\"ordinal\":6,\"injectedScriptId\":1}","functionName":"","functionLocation":{"scriptId":"41","lineNumber":0,"columnNumber":0},"location":{"scriptId":"41","lineNumber":17,"columnNumber":46},"url":"internal/main/run_main_module.js","scopeChain":[{"type":"local","object":{"type":"object","className":"Object","description":"Object","objectId":"{\"injectedScriptId\":1,\"id\":27}"},"startLocation":{"scriptId":"41","lineNumber":0,"columnNumber":0},"endLocation":{"scriptId":"41","lineNumber":18,"columnNumber":0}},{"type":"global","object":{"type":"object","className":"global","description":"global","objectId":"{\"injectedScriptId\":1,\"id\":28}"}}],"this":{"type":"undefined"}}],"reason":"Break on start","hitBreakpoints":[]}}
[10:46:40.910 UTC] 1586774800.91: Paused on entry
[10:46:40.911 UTC] → To target: "{\"id\":12,\"method\":\"Runtime.evaluate\",\"params\":{\"expression\":\"[process.pid, process.version, process.arch]\",\"returnByValue\":true,\"contextId\":1}}"
[10:46:40.912 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"57","url":"","startLine":0,"startColumn":0,"endLine":0,"endColumn":44,"executionContextId":1,"hash":"1ec2f5336c8ffedc40f21120b8e6e15e813cdc57","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":44,"stackTrace":{"callFrames":[{"functionName":"","scriptId":"56","url":"file:///c:/<path_to�>/Test/index.js","lineNumber":0,"columnNumber":16}]}}}
[10:46:40.912 UTC] ← From target: {"id":12,"result":{"result":{"type":"object","value":[9604,"v12.16.2","x64"]}}}
[10:46:40.913 UTC] Target node version: v12.16.2 x64
[10:46:40.913 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"telemetry","output":"nodeVersion","data":{"Versions.DebugAdapterCore":"6.8.7","Versions.DebugAdapter":"1.42.2","version":"v12.16.2"}}}
[10:46:40.913 UTC] To client: {"seq":0,"type":"event","event":"initialized"}
[10:46:40.920 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"primordials.js","path":"<node_internals>/internal/per_context/primordials.js","sourceReference":1000,"origin":"read-only core module"}}}
[10:46:40.920 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"domexception.js","path":"<node_internals>/internal/per_context/domexception.js","sourceReference":1001,"origin":"read-only core module"}}}
[10:46:40.920 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"loaders.js","path":"<node_internals>/internal/bootstrap/loaders.js","sourceReference":1002,"origin":"read-only core module"}}}
[10:46:40.920 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"node.js","path":"<node_internals>/internal/bootstrap/node.js","sourceReference":1003,"origin":"read-only core module"}}}
[10:46:40.920 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"errors.js","path":"<node_internals>/internal/errors.js","sourceReference":1004,"origin":"read-only core module"}}}
[10:46:40.920 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"util.js","path":"<node_internals>/internal/util.js","sourceReference":1005,"origin":"read-only core module"}}}
[10:46:40.920 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"events.js","path":"<node_internals>/events.js","sourceReference":1006,"origin":"read-only core module"}}}
[10:46:40.920 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"inspect.js","path":"<node_internals>/internal/util/inspect.js","sourceReference":1007,"origin":"read-only core module"}}}
[10:46:40.921 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM12","path":"<eval>/VM12","sourceReference":1008,"origin":"read-only content from Node.js"}}}
[10:46:40.921 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"types.js","path":"<node_internals>/internal/util/types.js","sourceReference":1009,"origin":"read-only core module"}}}
[10:46:40.921 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"assert.js","path":"<node_internals>/internal/assert.js","sourceReference":1010,"origin":"read-only core module"}}}
[10:46:40.921 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"buffer.js","path":"<node_internals>/buffer.js","sourceReference":1011,"origin":"read-only core module"}}}
[10:46:40.921 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"validators.js","path":"<node_internals>/internal/validators.js","sourceReference":1012,"origin":"read-only core module"}}}
[10:46:40.921 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"buffer.js","path":"<node_internals>/internal/buffer.js","sourceReference":1013,"origin":"read-only core module"}}}
[10:46:40.921 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"per_thread.js","path":"<node_internals>/internal/process/per_thread.js","sourceReference":1014,"origin":"read-only core module"}}}
[10:46:40.921 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"async_hooks.js","path":"<node_internals>/internal/async_hooks.js","sourceReference":1015,"origin":"read-only core module"}}}
[10:46:40.921 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"task_queues.js","path":"<node_internals>/internal/process/task_queues.js","sourceReference":1016,"origin":"read-only core module"}}}
[10:46:40.921 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"promises.js","path":"<node_internals>/internal/process/promises.js","sourceReference":1017,"origin":"read-only core module"}}}
[10:46:40.921 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"fixed_queue.js","path":"<node_internals>/internal/fixed_queue.js","sourceReference":1018,"origin":"read-only core module"}}}
[10:46:40.922 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"global.js","path":"<node_internals>/internal/console/global.js","sourceReference":1019,"origin":"read-only core module"}}}
[10:46:40.922 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"constructor.js","path":"<node_internals>/internal/console/constructor.js","sourceReference":1020,"origin":"read-only core module"}}}
[10:46:40.922 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"inspector.js","path":"<node_internals>/internal/util/inspector.js","sourceReference":1021,"origin":"read-only core module"}}}
[10:46:40.922 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"url.js","path":"<node_internals>/internal/url.js","sourceReference":1022,"origin":"read-only core module"}}}
[10:46:40.922 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"querystring.js","path":"<node_internals>/internal/querystring.js","sourceReference":1023,"origin":"read-only core module"}}}
[10:46:40.922 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"constants.js","path":"<node_internals>/internal/constants.js","sourceReference":1024,"origin":"read-only core module"}}}
[10:46:40.922 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"path.js","path":"<node_internals>/path.js","sourceReference":1025,"origin":"read-only core module"}}}
[10:46:40.922 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"encoding.js","path":"<node_internals>/internal/encoding.js","sourceReference":1026,"origin":"read-only core module"}}}
[10:46:40.922 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"timers.js","path":"<node_internals>/timers.js","sourceReference":1027,"origin":"read-only core module"}}}
[10:46:40.922 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"linkedlist.js","path":"<node_internals>/internal/linkedlist.js","sourceReference":1028,"origin":"read-only core module"}}}
[10:46:40.922 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"timers.js","path":"<node_internals>/internal/timers.js","sourceReference":1029,"origin":"read-only core module"}}}
[10:46:40.923 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"priority_queue.js","path":"<node_internals>/internal/priority_queue.js","sourceReference":1030,"origin":"read-only core module"}}}
[10:46:40.923 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"debuglog.js","path":"<node_internals>/internal/util/debuglog.js","sourceReference":1031,"origin":"read-only core module"}}}
[10:46:40.923 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"execution.js","path":"<node_internals>/internal/process/execution.js","sourceReference":1032,"origin":"read-only core module"}}}
[10:46:40.923 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"warning.js","path":"<node_internals>/internal/process/warning.js","sourceReference":1033,"origin":"read-only core module"}}}
[10:46:40.923 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"is_main_thread.js","path":"<node_internals>/internal/bootstrap/switches/is_main_thread.js","sourceReference":1034,"origin":"read-only core module"}}}
[10:46:40.923 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"signal.js","path":"<node_internals>/internal/process/signal.js","sourceReference":1035,"origin":"read-only core module"}}}
[10:46:40.923 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"does_own_process_state.js","path":"<node_internals>/internal/bootstrap/switches/does_own_process_state.js","sourceReference":1036,"origin":"read-only core module"}}}
[10:46:40.923 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"run_main_module.js","path":"<node_internals>/internal/main/run_main_module.js","sourceReference":1037,"origin":"read-only core module"}}}
[10:46:40.923 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"pre_execution.js","path":"<node_internals>/internal/bootstrap/pre_execution.js","sourceReference":1038,"origin":"read-only core module"}}}
[10:46:40.923 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"options.js","path":"<node_internals>/internal/options.js","sourceReference":1039,"origin":"read-only core module"}}}
[10:46:40.923 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"inspector_async_hook.js","path":"<node_internals>/internal/inspector_async_hook.js","sourceReference":1040,"origin":"read-only core module"}}}
[10:46:40.924 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"async_hooks.js","path":"<node_internals>/async_hooks.js","sourceReference":1041,"origin":"read-only core module"}}}
[10:46:40.924 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"loader.js","path":"<node_internals>/internal/modules/cjs/loader.js","sourceReference":1042,"origin":"read-only core module"}}}
[10:46:40.924 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"source_map_cache.js","path":"<node_internals>/internal/source_map/source_map_cache.js","sourceReference":1043,"origin":"read-only core module"}}}
[10:46:40.924 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"fs.js","path":"<node_internals>/fs.js","sourceReference":1044,"origin":"read-only core module"}}}
[10:46:40.924 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"utils.js","path":"<node_internals>/internal/fs/utils.js","sourceReference":1045,"origin":"read-only core module"}}}
[10:46:40.924 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"dir.js","path":"<node_internals>/internal/fs/dir.js","sourceReference":1046,"origin":"read-only core module"}}}
[10:46:40.924 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"helpers.js","path":"<node_internals>/internal/modules/cjs/helpers.js","sourceReference":1047,"origin":"read-only core module"}}}
[10:46:40.924 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"url.js","path":"<node_internals>/url.js","sourceReference":1048,"origin":"read-only core module"}}}
[10:46:40.924 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"idna.js","path":"<node_internals>/internal/idna.js","sourceReference":1049,"origin":"read-only core module"}}}
[10:46:40.924 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"vm.js","path":"<node_internals>/vm.js","sourceReference":1050,"origin":"read-only core module"}}}
[10:46:40.924 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"run_main.js","path":"<node_internals>/internal/modules/run_main.js","sourceReference":1051,"origin":"read-only core module"}}}
[10:46:40.925 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\index.js","origin":"read-only core module"}}}
[10:46:40.925 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM57","path":"<eval>/VM57","sourceReference":1053,"origin":"read-only content from Node.js"}}}
[10:46:40.971 UTC] From client: setExceptionBreakpoints({"filters":[]})
[10:46:40.972 UTC] → To target: "{\"id\":13,\"method\":\"Debugger.setPauseOnExceptions\",\"params\":{\"state\":\"none\"}}"
[10:46:40.973 UTC] ← From target: {"id":13,"result":{}}
[10:46:40.973 UTC] To client: {"seq":0,"type":"response","request_seq":4,"command":"setExceptionBreakpoints","success":true}
[10:46:40.973 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"telemetry","output":"ClientRequest/setExceptionBreakpoints","data":{"Versions.DebugAdapterCore":"6.8.7","Versions.DebugAdapter":"1.42.2","Versions.Target.Version":"v12.16.2","successful":"true","timeTakenInMilliseconds":"1.7981","requestType":"request"}}}
[10:46:40.979 UTC] From client: configurationDone(undefined)
[10:46:40.980 UTC] → To target: "{\"id\":14,\"method\":\"Debugger.resume\"}"
[10:46:40.980 UTC] ← From target: {"id":14,"result":{}}
[10:46:40.981 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"telemetry","output":"report-start-up-timings","data":{"Versions.DebugAdapterCore":"6.8.7","Versions.DebugAdapter":"1.42.2","Versions.Target.Version":"v12.16.2","RequestedContentWasDetected":"true","Steps":"[\"BeforeFirstStep\",\"ClientRequest/initialize\",\"ClientRequest/launch\",\"Attach\",\"Attach.RequestDebuggerTargetsInformation\",\"Attach.ProcessDebuggerTargetsInformation\",\"Attach.AttachToTargetDebuggerWebsocket\",\"Attach.ConfigureDebuggingSession.Internal\",\"Attach.ConfigureDebuggingSession.Target\",\"Attach.ConfigureDebuggingSession.End\"]","All":"902.5893","Request.ClientRequest/loadedSources.startTime":"[1586774800848]","Request.ClientRequest/loadedSources.timeTakenInMilliseconds":"[8.8586]","Request.ClientRequest/setExceptionBreakpoints.startTime":"[1586774800971]","Request.ClientRequest/setExceptionBreakpoints.timeTakenInMilliseconds":"[1.7981]","BeforeFirstStep":"[16.3683]","WaitingAfter.ClientRequest/initialize":"[21.7271]","ClientRequest/initialize":"[9.380501]","ClientRequest/launch":"[167.181201]","Attach":"[7.637501]","Attach.RequestDebuggerTargetsInformation":"[507.713399]","Attach.ProcessDebuggerTargetsInformation":"[1.000899]","Attach.AttachToTargetDebuggerWebsocket":"[3.5302]","Attach.ConfigureDebuggingSession.Internal":"[0.853399]","Attach.ConfigureDebuggingSession.Target":"[23.3476]","WaitingAfter.ClientRequest/launch":"[738.0972]","WaitingAfter.NotifyInitialized":"[835.5862]","Attach.ConfigureDebuggingSession.End":"[165.1929]"}}}
[10:46:40.981 UTC] To client: {"seq":0,"type":"response","request_seq":5,"command":"configurationDone","success":true}
[10:46:40.981 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"telemetry","output":"ClientRequest/configurationDone","data":{"Versions.DebugAdapterCore":"6.8.7","Versions.DebugAdapter":"1.42.2","Versions.Target.Version":"v12.16.2","successful":"true","timeTakenInMilliseconds":"2.5384","requestType":"request"}}}
[10:46:40.982 UTC] ← From target: {"method":"Debugger.resumed","params":{}}
[10:46:40.985 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"58","url":"file:///c:/<path_to�>/Test/node_modules/express/index.js","startLine":0,"startColumn":0,"endLine":11,"endColumn":0,"executionContextId":1,"hash":"0ad4efe8966723bc505f1f099166693401a6be24","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":224,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:40.986 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/express/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\express\index.js. pathMapping/webroot: undefined
[10:46:40.986 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\express\\index.js","origin":"read-only core module"}}}
[10:46:40.986 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"59","url":"file:///c:/<path_to�>/Test/node_modules/express/lib/express.js","startLine":0,"startColumn":0,"endLine":116,"endColumn":0,"executionContextId":1,"hash":"035390422f5b062954a132eb1c6f5a6570ccb818","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2409,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:40.987 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/express/lib/express.js to c:\Users\Steve\Documents\Github\Test\node_modules\express\lib\express.js. pathMapping/webroot: undefined
[10:46:40.987 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"express.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\express\\lib\\express.js","origin":"read-only core module"}}}
[10:46:40.989 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"60","url":"file:///c:/<path_to�>/Test/node_modules/body-parser/index.js","startLine":0,"startColumn":0,"endLine":157,"endColumn":0,"executionContextId":1,"hash":"255986d576c52f3358e96e284708add3729d1072","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2656,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:40.989 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/body-parser/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\body-parser\index.js. pathMapping/webroot: undefined
[10:46:40.990 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\body-parser\\index.js","origin":"read-only core module"}}}
[10:46:40.991 UTC] From client: threads(undefined)
[10:46:40.991 UTC] To client: {"seq":0,"type":"response","request_seq":6,"command":"threads","success":true,"body":{"threads":[{"id":1,"name":"Node (9604)"}]}}
[10:46:40.991 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"telemetry","output":"ClientRequest/threads","data":{"Versions.DebugAdapterCore":"6.8.7","Versions.DebugAdapter":"1.42.2","Versions.Target.Version":"v12.16.2","successful":"true","timeTakenInMilliseconds":"0.493701","requestType":"request"}}}
[10:46:40.992 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"61","url":"file:///c:/<path_to�>/Test/node_modules/depd/index.js","startLine":0,"startColumn":0,"endLine":522,"endColumn":0,"executionContextId":1,"hash":"21b2a7761c8285d63caf03a19683f2018100702a","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":10669,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:40.993 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/depd/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\depd\index.js. pathMapping/webroot: undefined
[10:46:40.993 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\depd\\index.js","origin":"read-only core module"}}}
[10:46:40.997 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"62","url":"file:///c:/<path_to�>/Test/node_modules/depd/lib/compat/index.js","startLine":0,"startColumn":0,"endLine":79,"endColumn":0,"executionContextId":1,"hash":"31b9b8345c20bc2a1cb26c995fd3cf562cb587de","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1421,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:40.998 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/depd/lib/compat/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\depd\lib\compat\index.js. pathMapping/webroot: undefined
[10:46:40.998 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\depd\\lib\\compat\\index.js","origin":"read-only core module"}}}
[10:46:40.999 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"63","url":"","startLine":0,"startColumn":0,"endLine":4,"endColumn":2,"executionContextId":1,"hash":"0ee081c915edd9a8682d802a9c2590a201f055f3","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":102,"stackTrace":{"callFrames":[{"functionName":"wrapfunction","scriptId":"61","url":"file:///c:/<path_to�>/Test/node_modules/depd/index.js","lineNumber":412,"columnNumber":41}]}}}
[10:46:41.000 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM63","path":"<eval>/VM63","sourceReference":1059,"origin":"read-only content from Node.js"}}}
[10:46:41.002 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"64","url":"file:///c:/<path_to�>/Test/node_modules/merge-descriptors/index.js","startLine":0,"startColumn":0,"endLine":60,"endColumn":0,"executionContextId":1,"hash":"33d3c0d01c3410e5537fd7489098de1a7142e743","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1215,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.002 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/merge-descriptors/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\merge-descriptors\index.js. pathMapping/webroot: undefined
[10:46:41.003 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\merge-descriptors\\index.js","origin":"read-only core module"}}}
[10:46:41.004 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"65","url":"file:///c:/<path_to�>/Test/node_modules/express/lib/application.js","startLine":0,"startColumn":0,"endLine":644,"endColumn":0,"executionContextId":1,"hash":"22e53d72512f86c537f5b11a7340e186021f1d57","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":14270,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.004 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/express/lib/application.js to c:\Users\Steve\Documents\Github\Test\node_modules\express\lib\application.js. pathMapping/webroot: undefined
[10:46:41.004 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"application.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\express\\lib\\application.js","origin":"read-only core module"}}}
[10:46:41.005 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"66","url":"file:///c:/<path_to�>/Test/node_modules/finalhandler/index.js","startLine":0,"startColumn":0,"endLine":331,"endColumn":0,"executionContextId":1,"hash":"3b8dffca9fc2061b44dbd18d2f38487403726a50","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":6518,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.006 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/finalhandler/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\finalhandler\index.js. pathMapping/webroot: undefined
[10:46:41.006 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\finalhandler\\index.js","origin":"read-only core module"}}}
[10:46:41.007 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"67","url":"file:///c:/<path_to�>/Test/node_modules/debug/src/index.js","startLine":0,"startColumn":0,"endLine":10,"endColumn":0,"executionContextId":1,"hash":"1f2b22ef31da0a4973c1a79b85d1b18a2a72f100","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":263,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.008 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/debug/src/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\debug\src\index.js. pathMapping/webroot: undefined
[10:46:41.008 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\debug\\src\\index.js","origin":"read-only core module"}}}
[10:46:41.008 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"68","url":"file:///c:/<path_to�>/Test/node_modules/debug/src/node.js","startLine":0,"startColumn":0,"endLine":248,"endColumn":0,"executionContextId":1,"hash":"291dde699024e0ff18a6c8c7834693d863ba0672","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":6015,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.009 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"69","url":"tty.js","startLine":0,"startColumn":0,"endLine":164,"endColumn":0,"executionContextId":1,"hash":"10bfe88f428d6e0e5bd04965c7b976d74731664e","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":5192,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.009 UTC] Paths.scriptParsed: could not resolve tty.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.009 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/debug/src/node.js to c:\Users\Steve\Documents\Github\Test\node_modules\debug\src\node.js. pathMapping/webroot: undefined
[10:46:41.010 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"node.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\debug\\src\\node.js","origin":"read-only core module"}}}
[10:46:41.010 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"70","url":"net.js","startLine":0,"startColumn":0,"endLine":1764,"endColumn":0,"executionContextId":1,"hash":"1ff45cb686924f981177b5bf40b5ebed4f49c1d0","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":48979,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.011 UTC] Paths.scriptParsed: could not resolve net.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.011 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"tty.js","path":"<node_internals>/tty.js","sourceReference":1065,"origin":"read-only core module"}}}
[10:46:41.011 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"71","url":"stream.js","startLine":0,"startColumn":0,"endLine":49,"endColumn":0,"executionContextId":1,"hash":"331c27bf9385cbbf0d72430a6cab521c573b438a","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2193,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.012 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"72","url":"internal/streams/pipeline.js","startLine":0,"startColumn":0,"endLine":94,"endColumn":0,"executionContextId":1,"hash":"3e6f48731c9f78dd4549bd70bcf8791b0a5bd463","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2363,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.012 UTC] Paths.scriptParsed: could not resolve stream.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.012 UTC] Paths.scriptParsed: could not resolve internal/streams/pipeline.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.012 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"net.js","path":"<node_internals>/net.js","sourceReference":1066,"origin":"read-only core module"}}}
[10:46:41.013 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"73","url":"internal/streams/end-of-stream.js","startLine":0,"startColumn":0,"endLine":124,"endColumn":0,"executionContextId":1,"hash":"3df0b16f4cfb9085472bdd30a47195b509b7ba2b","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3693,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.013 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"74","url":"internal/streams/legacy.js","startLine":0,"startColumn":0,"endLine":95,"endColumn":0,"executionContextId":1,"hash":"0aa2168d3fc5a3961d67730ca0fa6295021e3d06","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2176,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.013 UTC] Paths.scriptParsed: could not resolve internal/streams/end-of-stream.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.013 UTC] Paths.scriptParsed: could not resolve internal/streams/legacy.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.013 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"stream.js","path":"<node_internals>/stream.js","sourceReference":1067,"origin":"read-only core module"}}}
[10:46:41.014 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"75","url":"_stream_readable.js","startLine":0,"startColumn":0,"endLine":1205,"endColumn":0,"executionContextId":1,"hash":"22d1031f565d7b1069935f1fb43e96d95422b7e4","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":37507,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.014 UTC] Paths.scriptParsed: could not resolve _stream_readable.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.014 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"pipeline.js","path":"<node_internals>/internal/streams/pipeline.js","sourceReference":1068,"origin":"read-only core module"}}}
[10:46:41.014 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"76","url":"internal/streams/buffer_list.js","startLine":0,"startColumn":0,"endLine":176,"endColumn":0,"executionContextId":1,"hash":"3b853cdb889a612680150a00155b9efc5738c2e6","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3960,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.018 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"77","url":"internal/streams/destroy.js","startLine":0,"startColumn":0,"endLine":116,"endColumn":0,"executionContextId":1,"hash":"2c657294a09c7c466e50a17564d191b45f005559","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3279,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.018 UTC] Paths.scriptParsed: could not resolve internal/streams/buffer_list.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.018 UTC] Paths.scriptParsed: could not resolve internal/streams/destroy.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.019 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"end-of-stream.js","path":"<node_internals>/internal/streams/end-of-stream.js","sourceReference":1069,"origin":"read-only core module"}}}
[10:46:41.019 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"78","url":"internal/streams/state.js","startLine":0,"startColumn":0,"endLine":36,"endColumn":0,"executionContextId":1,"hash":"0bb207ab2e41121224ddbffc58b7078a42676f7f","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":917,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.020 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"79","url":"_stream_writable.js","startLine":0,"startColumn":0,"endLine":779,"endColumn":0,"executionContextId":1,"hash":"39734aae27401d161b089b3895d73f6127a2fd81","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":23603,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.020 UTC] Paths.scriptParsed: could not resolve internal/streams/state.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.020 UTC] Paths.scriptParsed: could not resolve _stream_writable.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.020 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"legacy.js","path":"<node_internals>/internal/streams/legacy.js","sourceReference":1070,"origin":"read-only core module"}}}
[10:46:41.021 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"_stream_readable.js","path":"<node_internals>/_stream_readable.js","sourceReference":1071,"origin":"read-only core module"}}}
[10:46:41.021 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"80","url":"_stream_duplex.js","startLine":0,"startColumn":0,"endLine":143,"endColumn":0,"executionContextId":1,"hash":"30c3cac580a42d0553115cdb86f0fced31d22421","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":4027,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.021 UTC] Paths.scriptParsed: could not resolve _stream_duplex.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.022 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"buffer_list.js","path":"<node_internals>/internal/streams/buffer_list.js","sourceReference":1072,"origin":"read-only core module"}}}
[10:46:41.022 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"81","url":"_stream_transform.js","startLine":0,"startColumn":0,"endLine":221,"endColumn":0,"executionContextId":1,"hash":"126c3e522183958f79d4e355bbba91f072b1b54b","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":7924,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.022 UTC] Paths.scriptParsed: could not resolve _stream_transform.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.023 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"82","url":"_stream_passthrough.js","startLine":0,"startColumn":0,"endLine":47,"endColumn":0,"executionContextId":1,"hash":"2e0d03407195c196036364352ffaa52666069246","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1800,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.023 UTC] Paths.scriptParsed: could not resolve _stream_passthrough.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.023 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"destroy.js","path":"<node_internals>/internal/streams/destroy.js","sourceReference":1073,"origin":"read-only core module"}}}
[10:46:41.023 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"83","url":"internal/net.js","startLine":0,"startColumn":0,"endLine":80,"endColumn":0,"executionContextId":1,"hash":"14645cf67660d56a3b5e7cda2e83655175d1ce7c","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2272,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.024 UTC] Paths.scriptParsed: could not resolve internal/net.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.024 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"state.js","path":"<node_internals>/internal/streams/state.js","sourceReference":1074,"origin":"read-only core module"}}}
[10:46:41.024 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"_stream_writable.js","path":"<node_internals>/_stream_writable.js","sourceReference":1075,"origin":"read-only core module"}}}
[10:46:41.024 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"_stream_duplex.js","path":"<node_internals>/_stream_duplex.js","sourceReference":1076,"origin":"read-only core module"}}}
[10:46:41.025 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"_stream_transform.js","path":"<node_internals>/_stream_transform.js","sourceReference":1077,"origin":"read-only core module"}}}
[10:46:41.025 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"_stream_passthrough.js","path":"<node_internals>/_stream_passthrough.js","sourceReference":1078,"origin":"read-only core module"}}}
[10:46:41.026 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"net.js","path":"<node_internals>/internal/net.js","sourceReference":1079,"origin":"read-only core module"}}}
[10:46:41.028 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"84","url":"internal/stream_base_commons.js","startLine":0,"startColumn":0,"endLine":270,"endColumn":0,"executionContextId":1,"hash":"036fb8d794530086366d25e94fd0490e805025ea","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":6735,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.028 UTC] Paths.scriptParsed: could not resolve internal/stream_base_commons.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.028 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"85","url":"internal/dtrace.js","startLine":0,"startColumn":0,"endLine":21,"endColumn":0,"executionContextId":1,"hash":"11de95077a23721940fb1c3d9350cb9e04f295c9","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":589,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.028 UTC] Paths.scriptParsed: could not resolve internal/dtrace.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.028 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"stream_base_commons.js","path":"<node_internals>/internal/stream_base_commons.js","sourceReference":1080,"origin":"read-only core module"}}}
[10:46:41.028 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"86","url":"internal/tty.js","startLine":0,"startColumn":0,"endLine":229,"endColumn":0,"executionContextId":1,"hash":"2a6b11e09d0bb038308e505bc95a8b17330c2ea0","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":6520,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.028 UTC] Paths.scriptParsed: could not resolve internal/tty.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.028 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"dtrace.js","path":"<node_internals>/internal/dtrace.js","sourceReference":1081,"origin":"read-only core module"}}}
[10:46:41.029 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"87","url":"util.js","startLine":0,"startColumn":0,"endLine":276,"endColumn":0,"executionContextId":1,"hash":"23e5e11d646e2ea8297ff941a2792c5635cc2787","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":8361,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.029 UTC] Paths.scriptParsed: could not resolve util.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.029 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"tty.js","path":"<node_internals>/internal/tty.js","sourceReference":1082,"origin":"read-only core module"}}}
[10:46:41.030 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"util.js","path":"<node_internals>/util.js","sourceReference":1083,"origin":"read-only core module"}}}
[10:46:41.031 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"88","url":"file:///c:/<path_to�>/Test/node_modules/debug/src/debug.js","startLine":0,"startColumn":0,"endLine":202,"endColumn":0,"executionContextId":1,"hash":"00a038956704c1cc6c9c65912bcf329644b2b8b7","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":4394,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.032 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/debug/src/debug.js to c:\Users\Steve\Documents\Github\Test\node_modules\debug\src\debug.js. pathMapping/webroot: undefined
[10:46:41.032 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"debug.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\debug\\src\\debug.js","origin":"read-only core module"}}}
[10:46:41.033 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"89","url":"file:///c:/<path_to�>/Test/node_modules/ms/index.js","startLine":0,"startColumn":0,"endLine":152,"endColumn":0,"executionContextId":1,"hash":"0b7911ce6b05f761582a05fb5b663c21526b18c0","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2764,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.034 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/ms/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\ms\index.js. pathMapping/webroot: undefined
[10:46:41.034 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\ms\\index.js","origin":"read-only core module"}}}
[10:46:41.041 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"90","url":"file:///c:/<path_to�>/Test/node_modules/encodeurl/index.js","startLine":0,"startColumn":0,"endLine":60,"endColumn":0,"executionContextId":1,"hash":"1f62055c8407a5e976a3837c1c173521573068cc","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1586,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.042 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/encodeurl/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\encodeurl\index.js. pathMapping/webroot: undefined
[10:46:41.042 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\encodeurl\\index.js","origin":"read-only core module"}}}
[10:46:41.043 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"91","url":"file:///c:/<path_to�>/Test/node_modules/escape-html/index.js","startLine":0,"startColumn":0,"endLine":78,"endColumn":0,"executionContextId":1,"hash":"25bd8a362f90e5f813f7c17c2b664a70599f2a2a","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1362,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.043 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/escape-html/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\escape-html\index.js. pathMapping/webroot: undefined
[10:46:41.044 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\escape-html\\index.js","origin":"read-only core module"}}}
[10:46:41.045 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"92","url":"file:///c:/<path_to�>/Test/node_modules/on-finished/index.js","startLine":0,"startColumn":0,"endLine":196,"endColumn":0,"executionContextId":1,"hash":"1004ec9412f845db1b11a0f6507a5fbe74daaa06","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3686,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.046 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/on-finished/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\on-finished\index.js. pathMapping/webroot: undefined
[10:46:41.046 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\on-finished\\index.js","origin":"read-only core module"}}}
[10:46:41.047 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"93","url":"file:///c:/<path_to�>/Test/node_modules/ee-first/index.js","startLine":0,"startColumn":0,"endLine":95,"endColumn":0,"executionContextId":1,"hash":"2d2fc41c3590a1432f0b7346c810870f55136f54","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1684,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.048 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/ee-first/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\ee-first\index.js. pathMapping/webroot: undefined
[10:46:41.048 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\ee-first\\index.js","origin":"read-only core module"}}}
[10:46:41.049 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"94","url":"file:///c:/<path_to�>/Test/node_modules/parseurl/index.js","startLine":0,"startColumn":0,"endLine":158,"endColumn":0,"executionContextId":1,"hash":"2472280c7a4c929f3b6f55cf77e5ec7e28a786e6","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2809,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.050 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/parseurl/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\parseurl\index.js. pathMapping/webroot: undefined
[10:46:41.050 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\parseurl\\index.js","origin":"read-only core module"}}}
[10:46:41.052 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"95","url":"file:///c:/<path_to�>/Test/node_modules/statuses/index.js","startLine":0,"startColumn":0,"endLine":113,"endColumn":0,"executionContextId":1,"hash":"17851ce943bf38e97184f605421e354d44cba7b0","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2088,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.053 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/statuses/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\statuses\index.js. pathMapping/webroot: undefined
[10:46:41.053 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\statuses\\index.js","origin":"read-only core module"}}}
[10:46:41.056 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"96","url":"file:///c:/<path_to�>/Test/node_modules/unpipe/index.js","startLine":0,"startColumn":0,"endLine":69,"endColumn":0,"executionContextId":1,"hash":"37f4996906e32ee7454d205389d831384e3f3436","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1118,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.057 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\unpipe\\index.js","origin":"read-only core module"}}}
[10:46:41.057 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/unpipe/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\unpipe\index.js. pathMapping/webroot: undefined
[10:46:41.059 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"97","url":"file:///c:/<path_to�>/Test/node_modules/express/lib/router/index.js","startLine":0,"startColumn":0,"endLine":662,"endColumn":0,"executionContextId":1,"hash":"03bce4842903657173f4912c4204dcc614c94956","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":14883,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.060 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/express/lib/router/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\express\lib\router\index.js. pathMapping/webroot: undefined
[10:46:41.060 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\express\\lib\\router\\index.js","origin":"read-only core module"}}}
[10:46:41.060 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"98","url":"file:///c:/<path_to�>/Test/node_modules/express/lib/router/route.js","startLine":0,"startColumn":0,"endLine":216,"endColumn":0,"executionContextId":1,"hash":"14877f6854acc1a33f6a954b1b569952496671f8","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":4149,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.061 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/express/lib/router/route.js to c:\Users\Steve\Documents\Github\Test\node_modules\express\lib\router\route.js. pathMapping/webroot: undefined
[10:46:41.061 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"route.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\express\\lib\\router\\route.js","origin":"read-only core module"}}}
[10:46:41.062 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"99","url":"file:///c:/<path_to�>/Test/node_modules/array-flatten/array-flatten.js","startLine":0,"startColumn":0,"endLine":64,"endColumn":0,"executionContextId":1,"hash":"2cb55605031a750732d4e9811b459a4a25ff4304","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1195,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.063 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/array-flatten/array-flatten.js to c:\Users\Steve\Documents\Github\Test\node_modules\array-flatten\array-flatten.js. pathMapping/webroot: undefined
[10:46:41.064 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"array-flatten.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\array-flatten\\array-flatten.js","origin":"read-only core module"}}}
[10:46:41.064 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"100","url":"file:///c:/<path_to�>/Test/node_modules/express/lib/router/layer.js","startLine":0,"startColumn":0,"endLine":181,"endColumn":0,"executionContextId":1,"hash":"0123afe05ee0988d77e8642347ba34c138344410","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3296,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.065 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/express/lib/router/layer.js to c:\Users\Steve\Documents\Github\Test\node_modules\express\lib\router\layer.js. pathMapping/webroot: undefined
[10:46:41.065 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"layer.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\express\\lib\\router\\layer.js","origin":"read-only core module"}}}
[10:46:41.067 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"101","url":"file:///c:/<path_to�>/Test/node_modules/path-to-regexp/index.js","startLine":0,"startColumn":0,"endLine":129,"endColumn":0,"executionContextId":1,"hash":"1fe9af5d644bcd552bef4931ccd7621874defe0c","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3328,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.068 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/path-to-regexp/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\path-to-regexp\index.js. pathMapping/webroot: undefined
[10:46:41.069 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\path-to-regexp\\index.js","origin":"read-only core module"}}}
[10:46:41.070 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"102","url":"file:///c:/<path_to�>/Test/node_modules/methods/index.js","startLine":0,"startColumn":0,"endLine":69,"endColumn":0,"executionContextId":1,"hash":"2cdf439570ed9d2f398bcc6d2f19b1d5363d81c7","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1040,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.071 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"103","url":"http.js","startLine":0,"startColumn":0,"endLine":92,"endColumn":0,"executionContextId":1,"hash":"262d31525ee590861fe8873b70f33d2963fbf85e","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2703,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.071 UTC] Paths.scriptParsed: could not resolve http.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.071 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/methods/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\methods\index.js. pathMapping/webroot: undefined
[10:46:41.071 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\methods\\index.js","origin":"read-only core module"}}}
[10:46:41.072 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"104","url":"_http_agent.js","startLine":0,"startColumn":0,"endLine":419,"endColumn":0,"executionContextId":1,"hash":"023012027a621a5a4dd9461c8ece6c232d4ca34f","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":13408,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.072 UTC] Paths.scriptParsed: could not resolve _http_agent.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.072 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"http.js","path":"<node_internals>/http.js","sourceReference":1099,"origin":"read-only core module"}}}
[10:46:41.072 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"_http_agent.js","path":"<node_internals>/_http_agent.js","sourceReference":1100,"origin":"read-only core module"}}}
[10:46:41.073 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"105","url":"_http_client.js","startLine":0,"startColumn":0,"endLine":825,"endColumn":0,"executionContextId":1,"hash":"1b1bb6c27d79af8d7c06a56586525b275c3f4035","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":24954,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.074 UTC] Paths.scriptParsed: could not resolve _http_client.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.074 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"106","url":"_http_common.js","startLine":0,"startColumn":0,"endLine":269,"endColumn":0,"executionContextId":1,"hash":"187e0e306e33056b22898b6221ea7c081135f9e1","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":8329,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.074 UTC] Paths.scriptParsed: could not resolve _http_common.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.075 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"_http_client.js","path":"<node_internals>/_http_client.js","sourceReference":1101,"origin":"read-only core module"}}}
[10:46:41.076 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"_http_common.js","path":"<node_internals>/_http_common.js","sourceReference":1102,"origin":"read-only core module"}}}
[10:46:41.076 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"107","url":"internal/freelist.js","startLine":0,"startColumn":0,"endLine":34,"endColumn":0,"executionContextId":1,"hash":"1e2813d448f0fc6f03da4e0152e737ab76f03ad1","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":563,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.077 UTC] Paths.scriptParsed: could not resolve internal/freelist.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.077 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"freelist.js","path":"<node_internals>/internal/freelist.js","sourceReference":1103,"origin":"read-only core module"}}}
[10:46:41.079 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"108","url":"_http_incoming.js","startLine":0,"startColumn":0,"endLine":297,"endColumn":0,"executionContextId":1,"hash":"02cdfad50170288235e711ff5209fa6f18c936fd","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":10508,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.079 UTC] Paths.scriptParsed: could not resolve _http_incoming.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.079 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"_http_incoming.js","path":"<node_internals>/_http_incoming.js","sourceReference":1104,"origin":"read-only core module"}}}
[10:46:41.082 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"109","url":"_http_outgoing.js","startLine":0,"startColumn":0,"endLine":896,"endColumn":0,"executionContextId":1,"hash":"0c76aed399c666a116f19a4d3a121fbc62b654b0","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":26933,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.082 UTC] Paths.scriptParsed: could not resolve _http_outgoing.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.083 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"110","url":"internal/http.js","startLine":0,"startColumn":0,"endLine":57,"endColumn":0,"executionContextId":1,"hash":"107a29627b5825ff3852a3d200be5fa45e183add","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1228,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.083 UTC] Paths.scriptParsed: could not resolve internal/http.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.083 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"_http_outgoing.js","path":"<node_internals>/_http_outgoing.js","sourceReference":1105,"origin":"read-only core module"}}}
[10:46:41.083 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"http.js","path":"<node_internals>/internal/http.js","sourceReference":1106,"origin":"read-only core module"}}}
[10:46:41.085 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"111","url":"_http_server.js","startLine":0,"startColumn":0,"endLine":866,"endColumn":0,"executionContextId":1,"hash":"0af88bb131c3feb31eac7b4d3319af811cd7bfd1","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":27522,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.085 UTC] Paths.scriptParsed: could not resolve _http_server.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.085 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"_http_server.js","path":"<node_internals>/_http_server.js","sourceReference":1107,"origin":"read-only core module"}}}
[10:46:41.087 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"112","url":"file:///c:/<path_to�>/Test/node_modules/utils-merge/index.js","startLine":0,"startColumn":0,"endLine":23,"endColumn":0,"executionContextId":1,"hash":"01677a3390056f692e84d7326f28e5623a61b0c6","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":381,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.088 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/utils-merge/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\utils-merge\index.js. pathMapping/webroot: undefined
[10:46:41.088 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\utils-merge\\index.js","origin":"read-only core module"}}}
[10:46:41.089 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"113","url":"file:///c:/<path_to�>/Test/node_modules/setprototypeof/index.js","startLine":0,"startColumn":0,"endLine":17,"endColumn":0,"executionContextId":1,"hash":"32f073d7651bfea75dcb5dd35a3c475c086fb125","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":384,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.090 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/setprototypeof/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\setprototypeof\index.js. pathMapping/webroot: undefined
[10:46:41.090 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\setprototypeof\\index.js","origin":"read-only core module"}}}
[10:46:41.091 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"114","url":"file:///c:/<path_to�>/Test/node_modules/express/lib/middleware/init.js","startLine":0,"startColumn":0,"endLine":43,"endColumn":0,"executionContextId":1,"hash":"1ebd116f73329a21063cba5f310b81585add504b","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":853,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.092 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/express/lib/middleware/init.js to c:\Users\Steve\Documents\Github\Test\node_modules\express\lib\middleware\init.js. pathMapping/webroot: undefined
[10:46:41.092 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"init.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\express\\lib\\middleware\\init.js","origin":"read-only core module"}}}
[10:46:41.092 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"115","url":"file:///c:/<path_to�>/Test/node_modules/express/lib/middleware/query.js","startLine":0,"startColumn":0,"endLine":47,"endColumn":0,"executionContextId":1,"hash":"0159b65c8eec946c409e2009be6bdbc41b44c115","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":885,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.093 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/express/lib/middleware/query.js to c:\Users\Steve\Documents\Github\Test\node_modules\express\lib\middleware\query.js. pathMapping/webroot: undefined
[10:46:41.093 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"query.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\express\\lib\\middleware\\query.js","origin":"read-only core module"}}}
[10:46:41.095 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"116","url":"file:///c:/<path_to�>/Test/node_modules/qs/lib/index.js","startLine":0,"startColumn":0,"endLine":11,"endColumn":0,"executionContextId":1,"hash":"2ccc9fd768cf0e5101db8b486879f2d82a805ac3","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":211,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.096 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/qs/lib/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\qs\lib\index.js. pathMapping/webroot: undefined
[10:46:41.096 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\qs\\lib\\index.js","origin":"read-only core module"}}}
[10:46:41.097 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"117","url":"file:///c:/<path_to�>/Test/node_modules/qs/lib/stringify.js","startLine":0,"startColumn":0,"endLine":269,"endColumn":0,"executionContextId":1,"hash":"237e7bc588235f332b5e6cb829b74b53473c0b24","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":8228,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.098 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/qs/lib/stringify.js to c:\Users\Steve\Documents\Github\Test\node_modules\qs\lib\stringify.js. pathMapping/webroot: undefined
[10:46:41.098 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"stringify.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\qs\\lib\\stringify.js","origin":"read-only core module"}}}
[10:46:41.099 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"118","url":"file:///c:/<path_to�>/Test/node_modules/qs/lib/utils.js","startLine":0,"startColumn":0,"endLine":230,"endColumn":0,"executionContextId":1,"hash":"205e3fdd522d7a566926587a5deed4e61daa3615","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":6204,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.100 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/qs/lib/utils.js to c:\Users\Steve\Documents\Github\Test\node_modules\qs\lib\utils.js. pathMapping/webroot: undefined
[10:46:41.100 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"utils.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\qs\\lib\\utils.js","origin":"read-only core module"}}}
[10:46:41.101 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"119","url":"file:///c:/<path_to�>/Test/node_modules/qs/lib/formats.js","startLine":0,"startColumn":0,"endLine":18,"endColumn":0,"executionContextId":1,"hash":"0c83646b0640ad6f55e1c7005dfdde9c4c55a13c","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":387,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.102 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/qs/lib/formats.js to c:\Users\Steve\Documents\Github\Test\node_modules\qs\lib\formats.js. pathMapping/webroot: undefined
[10:46:41.102 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"formats.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\qs\\lib\\formats.js","origin":"read-only core module"}}}
[10:46:41.102 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"120","url":"file:///c:/<path_to�>/Test/node_modules/qs/lib/parse.js","startLine":0,"startColumn":0,"endLine":242,"endColumn":0,"executionContextId":1,"hash":"2bb3c7c07525ba8c4e29ecda13f3c4085f820ff4","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":8486,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.103 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/qs/lib/parse.js to c:\Users\Steve\Documents\Github\Test\node_modules\qs\lib\parse.js. pathMapping/webroot: undefined
[10:46:41.103 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"parse.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\qs\\lib\\parse.js","origin":"read-only core module"}}}
[10:46:41.105 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"121","url":"file:///c:/<path_to�>/Test/node_modules/express/lib/view.js","startLine":0,"startColumn":0,"endLine":182,"endColumn":0,"executionContextId":1,"hash":"19efeadb793807607b65775292ab4dd306ecadc1","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3326,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.106 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/express/lib/view.js to c:\Users\Steve\Documents\Github\Test\node_modules\express\lib\view.js. pathMapping/webroot: undefined
[10:46:41.106 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"view.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\express\\lib\\view.js","origin":"read-only core module"}}}
[10:46:41.108 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"122","url":"file:///c:/<path_to�>/Test/node_modules/express/lib/utils.js","startLine":0,"startColumn":0,"endLine":306,"endColumn":0,"executionContextId":1,"hash":"04c86404512a7d3e0a3d4ef18a71954a64a568d6","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":5972,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.108 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/express/lib/utils.js to c:\Users\Steve\Documents\Github\Test\node_modules\express\lib\utils.js. pathMapping/webroot: undefined
[10:46:41.109 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"utils.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\express\\lib\\utils.js","origin":"read-only core module"}}}
[10:46:41.110 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"123","url":"file:///c:/<path_to�>/Test/node_modules/safe-buffer/index.js","startLine":0,"startColumn":0,"endLine":62,"endColumn":0,"executionContextId":1,"hash":"0869f9d261e238aa2b777893b57f7db1495dd6a3","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1529,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.110 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/safe-buffer/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\safe-buffer\index.js. pathMapping/webroot: undefined
[10:46:41.111 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\safe-buffer\\index.js","origin":"read-only core module"}}}
[10:46:41.112 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"124","url":"file:///c:/<path_to�>/Test/node_modules/content-disposition/index.js","startLine":0,"startColumn":0,"endLine":458,"endColumn":0,"executionContextId":1,"hash":"17de2df937cee0ca41305de1c15e6b7d5ead2306","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":10594,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.113 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/content-disposition/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\content-disposition\index.js. pathMapping/webroot: undefined
[10:46:41.113 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\content-disposition\\index.js","origin":"read-only core module"}}}
[10:46:41.114 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"125","url":"file:///c:/<path_to�>/Test/node_modules/content-type/index.js","startLine":0,"startColumn":0,"endLine":222,"endColumn":0,"executionContextId":1,"hash":"077cdf57924a945632a3e91e6c3e497a50b337bd","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":4809,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.115 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/content-type/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\content-type\index.js. pathMapping/webroot: undefined
[10:46:41.115 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\content-type\\index.js","origin":"read-only core module"}}}
[10:46:41.118 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"126","url":"file:///c:/<path_to�>/Test/node_modules/send/index.js","startLine":0,"startColumn":0,"endLine":1129,"endColumn":0,"executionContextId":1,"hash":"14a88f76935149fa1cd4cd571a411da53c26f397","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":23287,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.118 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/send/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\send\index.js. pathMapping/webroot: undefined
[10:46:41.118 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\send\\index.js","origin":"read-only core module"}}}
[10:46:41.120 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"127","url":"file:///c:/<path_to�>/Test/node_modules/http-errors/index.js","startLine":0,"startColumn":0,"endLine":266,"endColumn":0,"executionContextId":1,"hash":"317a820305aecacb047a5d538fe0012e5e30a1ae","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":5878,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.121 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/http-errors/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\http-errors\index.js. pathMapping/webroot: undefined
[10:46:41.121 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\http-errors\\index.js","origin":"read-only core module"}}}
[10:46:41.123 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"128","url":"file:///c:/<path_to�>/Test/node_modules/inherits/inherits.js","startLine":0,"startColumn":0,"endLine":7,"endColumn":0,"executionContextId":1,"hash":"01e451841d4d5de13ee9c921008a85854a1b7ebc","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":192,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.124 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/inherits/inherits.js to c:\Users\Steve\Documents\Github\Test\node_modules\inherits\inherits.js. pathMapping/webroot: undefined
[10:46:41.124 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"inherits.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\inherits\\inherits.js","origin":"read-only core module"}}}
[10:46:41.124 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"129","url":"file:///c:/<path_to�>/Test/node_modules/toidentifier/index.js","startLine":0,"startColumn":0,"endLine":30,"endColumn":0,"executionContextId":1,"hash":"0f4b7f2a3fa5b4f8687fe06728da0ec706afa4d6","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":490,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.125 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/toidentifier/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\toidentifier\index.js. pathMapping/webroot: undefined
[10:46:41.125 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\toidentifier\\index.js","origin":"read-only core module"}}}
[10:46:41.130 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"130","url":"","startLine":0,"startColumn":0,"endLine":4,"endColumn":2,"executionContextId":1,"hash":"0ee081c915edd9a8682d802a9c2590a201f055f3","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":102,"stackTrace":{"callFrames":[{"functionName":"wrapfunction","scriptId":"61","url":"file:///c:/<path_to�>/Test/node_modules/depd/index.js","lineNumber":412,"columnNumber":41}]}}}
[10:46:41.131 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM130","path":"<eval>/VM130","sourceReference":1126,"origin":"read-only content from Node.js"}}}
[10:46:41.135 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"131","url":"file:///c:/<path_to�>/Test/node_modules/destroy/index.js","startLine":0,"startColumn":0,"endLine":75,"endColumn":0,"executionContextId":1,"hash":"273a81629d79242979e1dbe05222a9a0466e0263","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1043,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.136 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"132","url":"internal/fs/streams.js","startLine":0,"startColumn":0,"endLine":442,"endColumn":0,"executionContextId":1,"hash":"3df9fc18a53ccd6b4c93bae842099fca318e5ae9","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":11660,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.136 UTC] Paths.scriptParsed: could not resolve internal/fs/streams.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.136 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/destroy/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\destroy\index.js. pathMapping/webroot: undefined
[10:46:41.137 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\destroy\\index.js","origin":"read-only core module"}}}
[10:46:41.137 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"streams.js","path":"<node_internals>/internal/fs/streams.js","sourceReference":1128,"origin":"read-only core module"}}}
[10:46:41.140 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"133","url":"file:///c:/<path_to�>/Test/node_modules/etag/index.js","startLine":0,"startColumn":0,"endLine":131,"endColumn":0,"executionContextId":1,"hash":"279c21e1610cabf80076d6c03eff90743c8417ff","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2479,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.141 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"134","url":"crypto.js","startLine":0,"startColumn":0,"endLine":284,"endColumn":0,"executionContextId":1,"hash":"389f4cba3fb17d1a3a007b99830f030125a0b99a","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":7407,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.141 UTC] Paths.scriptParsed: could not resolve crypto.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.141 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/etag/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\etag\index.js. pathMapping/webroot: undefined
[10:46:41.144 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\etag\\index.js","origin":"read-only core module"}}}
[10:46:41.144 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"crypto.js","path":"<node_internals>/crypto.js","sourceReference":1130,"origin":"read-only core module"}}}
[10:46:41.146 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"135","url":"internal/crypto/random.js","startLine":0,"startColumn":0,"endLine":131,"endColumn":0,"executionContextId":1,"hash":"2378f7e79633221265e4a799affb337c0d17baea","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3644,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.146 UTC] Paths.scriptParsed: could not resolve internal/crypto/random.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.146 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"136","url":"internal/crypto/pbkdf2.js","startLine":0,"startColumn":0,"endLine":86,"endColumn":0,"executionContextId":1,"hash":"2ab4b6aa94748a1c0bd2a090101d779c3f2aac4c","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2807,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.146 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"137","url":"internal/crypto/util.js","startLine":0,"startColumn":0,"endLine":121,"endColumn":0,"executionContextId":1,"hash":"237d9006669bd1a13b3361438a5525a213c4f179","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3058,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.147 UTC] Paths.scriptParsed: could not resolve internal/crypto/pbkdf2.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.147 UTC] Paths.scriptParsed: could not resolve internal/crypto/util.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.147 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"random.js","path":"<node_internals>/internal/crypto/random.js","sourceReference":1131,"origin":"read-only core module"}}}
[10:46:41.151 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"138","url":"internal/crypto/scrypt.js","startLine":0,"startColumn":0,"endLine":122,"endColumn":0,"executionContextId":1,"hash":"3b12a19f9d9868424557716ac43e50aa13ec5eff","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3817,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.151 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"139","url":"internal/crypto/keygen.js","startLine":0,"startColumn":0,"endLine":267,"endColumn":0,"executionContextId":1,"hash":"0c9161f6a40120da1aea66bf8f657fd6035d0217","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":8550,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.151 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"140","url":"internal/crypto/keys.js","startLine":0,"startColumn":0,"endLine":360,"endColumn":0,"executionContextId":1,"hash":"1e315a1561887efd2aff8db4608597d006bd5b8b","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":10699,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.151 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"141","url":"internal/crypto/diffiehellman.js","startLine":0,"startColumn":0,"endLine":239,"endColumn":0,"executionContextId":1,"hash":"052fb5b4188a75685e3fb7933babedbf3ce5168b","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":6586,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.152 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"142","url":"internal/crypto/cipher.js","startLine":0,"startColumn":0,"endLine":278,"endColumn":0,"executionContextId":1,"hash":"132b3e6e72bbdee901b45a4ba77b76d21ec792b8","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":8677,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.152 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"143","url":"internal/streams/lazy_transform.js","startLine":0,"startColumn":0,"endLine":69,"endColumn":0,"executionContextId":1,"hash":"0c3265d5826265a3448e138e43751b34576ca1b1","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1738,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.152 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"144","url":"internal/crypto/sig.js","startLine":0,"startColumn":0,"endLine":230,"endColumn":0,"executionContextId":1,"hash":"1440baef8460880b3163a3376ec81f05411f08b0","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":6003,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.152 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"145","url":"internal/crypto/hash.js","startLine":0,"startColumn":0,"endLine":148,"endColumn":0,"executionContextId":1,"hash":"16dd5310265f7750548ce19ec7e30ba873bec813","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":4029,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.152 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"146","url":"internal/crypto/certificate.js","startLine":0,"startColumn":0,"endLine":48,"endColumn":0,"executionContextId":1,"hash":"3ed8568e5307ab517af361d0a7fde9ef5e60db17","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1167,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.152 UTC] Paths.scriptParsed: could not resolve internal/crypto/scrypt.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.152 UTC] Paths.scriptParsed: could not resolve internal/crypto/keygen.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.152 UTC] Paths.scriptParsed: could not resolve internal/crypto/keys.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.152 UTC] Paths.scriptParsed: could not resolve internal/crypto/diffiehellman.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.152 UTC] Paths.scriptParsed: could not resolve internal/crypto/cipher.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.152 UTC] Paths.scriptParsed: could not resolve internal/streams/lazy_transform.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.152 UTC] Paths.scriptParsed: could not resolve internal/crypto/sig.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.152 UTC] Paths.scriptParsed: could not resolve internal/crypto/hash.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.152 UTC] Paths.scriptParsed: could not resolve internal/crypto/certificate.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.153 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"pbkdf2.js","path":"<node_internals>/internal/crypto/pbkdf2.js","sourceReference":1132,"origin":"read-only core module"}}}
[10:46:41.154 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"147","url":"file:///c:/<path_to�>/Test/node_modules/fresh/index.js","startLine":0,"startColumn":0,"endLine":137,"endColumn":0,"executionContextId":1,"hash":"03c6c7d061c64d521404f8ef54d6c4ff1d253675","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2711,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.154 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"148","url":"file:///c:/<path_to�>/Test/node_modules/mime/mime.js","startLine":0,"startColumn":0,"endLine":108,"endColumn":0,"executionContextId":1,"hash":"2640f1d31a4282a2417f726ec5f5640a5fb62b45","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2726,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.154 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"util.js","path":"<node_internals>/internal/crypto/util.js","sourceReference":1133,"origin":"read-only core module"}}}
[10:46:41.154 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/fresh/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\fresh\index.js. pathMapping/webroot: undefined
[10:46:41.154 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/mime/mime.js to c:\Users\Steve\Documents\Github\Test\node_modules\mime\mime.js. pathMapping/webroot: undefined
[10:46:41.155 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"scrypt.js","path":"<node_internals>/internal/crypto/scrypt.js","sourceReference":1134,"origin":"read-only core module"}}}
[10:46:41.155 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"keygen.js","path":"<node_internals>/internal/crypto/keygen.js","sourceReference":1135,"origin":"read-only core module"}}}
[10:46:41.155 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"keys.js","path":"<node_internals>/internal/crypto/keys.js","sourceReference":1136,"origin":"read-only core module"}}}
[10:46:41.157 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"diffiehellman.js","path":"<node_internals>/internal/crypto/diffiehellman.js","sourceReference":1137,"origin":"read-only core module"}}}
[10:46:41.157 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"cipher.js","path":"<node_internals>/internal/crypto/cipher.js","sourceReference":1138,"origin":"read-only core module"}}}
[10:46:41.157 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"lazy_transform.js","path":"<node_internals>/internal/streams/lazy_transform.js","sourceReference":1139,"origin":"read-only core module"}}}
[10:46:41.158 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"sig.js","path":"<node_internals>/internal/crypto/sig.js","sourceReference":1140,"origin":"read-only core module"}}}
[10:46:41.158 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"hash.js","path":"<node_internals>/internal/crypto/hash.js","sourceReference":1141,"origin":"read-only core module"}}}
[10:46:41.159 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"certificate.js","path":"<node_internals>/internal/crypto/certificate.js","sourceReference":1142,"origin":"read-only core module"}}}
[10:46:41.160 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\fresh\\index.js","origin":"read-only core module"}}}
[10:46:41.161 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"mime.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\mime\\mime.js","origin":"read-only core module"}}}
[10:46:41.164 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"149","url":"file:///c:/<path_to�>/Test/node_modules/send/node_modules/ms/index.js","startLine":0,"startColumn":0,"endLine":162,"endColumn":0,"executionContextId":1,"hash":"1add9b9a18268c9b81535d63969f57110591acbf","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3034,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.166 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/send/node_modules/ms/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\send\node_modules\ms\index.js. pathMapping/webroot: undefined
[10:46:41.166 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\send\\node_modules\\ms\\index.js","origin":"read-only core module"}}}
[10:46:41.166 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"150","url":"file:///c:/<path_to�>/Test/node_modules/range-parser/index.js","startLine":0,"startColumn":0,"endLine":162,"endColumn":0,"executionContextId":1,"hash":"0fec3ea80905acaf57af7c408d60d8eb13f1f4d8","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2900,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.167 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"151","url":"","startLine":0,"startColumn":0,"endLine":4,"endColumn":2,"executionContextId":1,"hash":"0ee081c915edd9a8682d802a9c2590a201f055f3","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":102,"stackTrace":{"callFrames":[{"functionName":"wrapfunction","scriptId":"61","url":"file:///c:/<path_to�>/Test/node_modules/depd/index.js","lineNumber":412,"columnNumber":41}]}}}
[10:46:41.168 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/range-parser/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\range-parser\index.js. pathMapping/webroot: undefined
[10:46:41.168 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\range-parser\\index.js","origin":"read-only core module"}}}
[10:46:41.168 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"152","url":"","startLine":0,"startColumn":0,"endLine":4,"endColumn":2,"executionContextId":1,"hash":"0ee081c915edd9a8682d802a9c2590a201f055f3","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":102,"stackTrace":{"callFrames":[{"functionName":"wrapfunction","scriptId":"61","url":"file:///c:/<path_to�>/Test/node_modules/depd/index.js","lineNumber":412,"columnNumber":41}]}}}
[10:46:41.169 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"153","url":"","startLine":0,"startColumn":0,"endLine":4,"endColumn":2,"executionContextId":1,"hash":"0ee081c915edd9a8682d802a9c2590a201f055f3","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":102,"stackTrace":{"callFrames":[{"functionName":"wrapfunction","scriptId":"61","url":"file:///c:/<path_to�>/Test/node_modules/depd/index.js","lineNumber":412,"columnNumber":41}]}}}
[10:46:41.169 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM151","path":"<eval>/VM151","sourceReference":1147,"origin":"read-only content from Node.js"}}}
[10:46:41.170 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM152","path":"<eval>/VM152","sourceReference":1148,"origin":"read-only content from Node.js"}}}
[10:46:41.170 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM153","path":"<eval>/VM153","sourceReference":1149,"origin":"read-only content from Node.js"}}}
[10:46:41.170 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"154","url":"","startLine":0,"startColumn":0,"endLine":4,"endColumn":2,"executionContextId":1,"hash":"0ee081c915edd9a8682d802a9c2590a201f055f3","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":102,"stackTrace":{"callFrames":[{"functionName":"wrapfunction","scriptId":"61","url":"file:///c:/<path_to�>/Test/node_modules/depd/index.js","lineNumber":412,"columnNumber":41}]}}}
[10:46:41.171 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM154","path":"<eval>/VM154","sourceReference":1150,"origin":"read-only content from Node.js"}}}
[10:46:41.171 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"155","url":"","startLine":0,"startColumn":0,"endLine":4,"endColumn":2,"executionContextId":1,"hash":"0ee081c915edd9a8682d802a9c2590a201f055f3","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":102,"stackTrace":{"callFrames":[{"functionName":"wrapfunction","scriptId":"61","url":"file:///c:/<path_to�>/Test/node_modules/depd/index.js","lineNumber":412,"columnNumber":41}]}}}
[10:46:41.172 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM155","path":"<eval>/VM155","sourceReference":1151,"origin":"read-only content from Node.js"}}}
[10:46:41.172 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"156","url":"","startLine":0,"startColumn":0,"endLine":4,"endColumn":2,"executionContextId":1,"hash":"0ee081c915edd9a8682d802a9c2590a201f055f3","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":102,"stackTrace":{"callFrames":[{"functionName":"wrapfunction","scriptId":"61","url":"file:///c:/<path_to�>/Test/node_modules/depd/index.js","lineNumber":412,"columnNumber":41}]}}}
[10:46:41.172 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM156","path":"<eval>/VM156","sourceReference":1152,"origin":"read-only content from Node.js"}}}
[10:46:41.174 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"157","url":"file:///c:/<path_to�>/Test/node_modules/proxy-addr/index.js","startLine":0,"startColumn":0,"endLine":327,"endColumn":0,"executionContextId":1,"hash":"0790a94d2e7125bf7b9cbbf5c1f7979747155f2d","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":6000,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.175 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/proxy-addr/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\proxy-addr\index.js. pathMapping/webroot: undefined
[10:46:41.175 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\proxy-addr\\index.js","origin":"read-only core module"}}}
[10:46:41.175 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"158","url":"file:///c:/<path_to�>/Test/node_modules/forwarded/index.js","startLine":0,"startColumn":0,"endLine":76,"endColumn":0,"executionContextId":1,"hash":"1a200e861edad6904e0f3dc5178c15756b9383fc","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1360,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.176 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/forwarded/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\forwarded\index.js. pathMapping/webroot: undefined
[10:46:41.176 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\forwarded\\index.js","origin":"read-only core module"}}}
[10:46:41.179 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"159","url":"file:///c:/<path_to�>/Test/node_modules/ipaddr.js/lib/ipaddr.js","startLine":0,"startColumn":0,"endLine":673,"endColumn":0,"executionContextId":1,"hash":"030e2238833ec4d07e127c233011a968063bfb35","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":19333,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.180 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/ipaddr.js/lib/ipaddr.js to c:\Users\Steve\Documents\Github\Test\node_modules\ipaddr.js\lib\ipaddr.js. pathMapping/webroot: undefined
[10:46:41.180 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"ipaddr.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\ipaddr.js\\lib\\ipaddr.js","origin":"read-only core module"}}}
[10:46:41.182 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"160","url":"querystring.js","startLine":0,"startColumn":0,"endLine":402,"endColumn":0,"executionContextId":1,"hash":"3cfcab3861317a22082bd5b52a6f937080272475","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":12805,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.182 UTC] Paths.scriptParsed: could not resolve querystring.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.182 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"querystring.js","path":"<node_internals>/querystring.js","sourceReference":1156,"origin":"read-only core module"}}}
[10:46:41.183 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"161","url":"","startLine":0,"startColumn":0,"endLine":4,"endColumn":2,"executionContextId":1,"hash":"3c69b8a859f0b9fd5129e47dcbbfceed583f5226","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":108,"stackTrace":{"callFrames":[{"functionName":"wrapfunction","scriptId":"61","url":"file:///c:/<path_to�>/Test/node_modules/depd/index.js","lineNumber":412,"columnNumber":41}]}}}
[10:46:41.183 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM161","path":"<eval>/VM161","sourceReference":1157,"origin":"read-only content from Node.js"}}}
[10:46:41.183 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"162","url":"","startLine":0,"startColumn":0,"endLine":4,"endColumn":2,"executionContextId":1,"hash":"3c69b8a859f0b9fd5129e47dcbbfceed583f5226","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":108,"stackTrace":{"callFrames":[{"functionName":"wrapfunction","scriptId":"61","url":"file:///c:/<path_to�>/Test/node_modules/depd/index.js","lineNumber":412,"columnNumber":41}]}}}
[10:46:41.184 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM162","path":"<eval>/VM162","sourceReference":1158,"origin":"read-only content from Node.js"}}}
[10:46:41.185 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"163","url":"","startLine":0,"startColumn":0,"endLine":4,"endColumn":2,"executionContextId":1,"hash":"0ee081c915edd9a8682d802a9c2590a201f055f3","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":102,"stackTrace":{"callFrames":[{"functionName":"wrapfunction","scriptId":"61","url":"file:///c:/<path_to�>/Test/node_modules/depd/index.js","lineNumber":412,"columnNumber":41}]}}}
[10:46:41.186 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM163","path":"<eval>/VM163","sourceReference":1159,"origin":"read-only content from Node.js"}}}
[10:46:41.187 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"164","url":"file:///c:/<path_to�>/Test/node_modules/express/lib/request.js","startLine":0,"startColumn":0,"endLine":525,"endColumn":0,"executionContextId":1,"hash":"079e93c2419bbb0b2713bee36e23de121eb1687a","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":12504,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.187 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/express/lib/request.js to c:\Users\Steve\Documents\Github\Test\node_modules\express\lib\request.js. pathMapping/webroot: undefined
[10:46:41.187 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"request.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\express\\lib\\request.js","origin":"read-only core module"}}}
[10:46:41.188 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"165","url":"file:///c:/<path_to�>/Test/node_modules/accepts/index.js","startLine":0,"startColumn":0,"endLine":238,"endColumn":0,"executionContextId":1,"hash":"1ddbf832308263376449390dc97fb2870b754e6b","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":5252,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.189 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/accepts/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\accepts\index.js. pathMapping/webroot: undefined
[10:46:41.189 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\accepts\\index.js","origin":"read-only core module"}}}
[10:46:41.190 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"166","url":"file:///c:/<path_to�>/Test/node_modules/negotiator/index.js","startLine":0,"startColumn":0,"endLine":124,"endColumn":0,"executionContextId":1,"hash":"005148e74cf06ed94a561c8e738bdbe974950910","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3344,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.191 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/negotiator/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\negotiator\index.js. pathMapping/webroot: undefined
[10:46:41.191 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\negotiator\\index.js","origin":"read-only core module"}}}
[10:46:41.192 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"167","url":"file:///c:/<path_to�>/Test/node_modules/mime-types/index.js","startLine":0,"startColumn":0,"endLine":188,"endColumn":0,"executionContextId":1,"hash":"3f85596f0cdc71a9409893d9980f2cbf71b65c7d","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3663,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.193 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/mime-types/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\mime-types\index.js. pathMapping/webroot: undefined
[10:46:41.193 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\mime-types\\index.js","origin":"read-only core module"}}}
[10:46:41.195 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"168","url":"file:///c:/<path_to�>/Test/node_modules/mime-db/index.js","startLine":0,"startColumn":0,"endLine":11,"endColumn":0,"executionContextId":1,"hash":"327cc2376f9a64084f2d595874119bc3667fa268","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":136,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.195 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/mime-db/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\mime-db\index.js. pathMapping/webroot: undefined
[10:46:41.196 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\mime-db\\index.js","origin":"read-only core module"}}}
[10:46:41.205 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"169","url":"file:///c:/<path_to�>/Test/node_modules/type-is/index.js","startLine":0,"startColumn":0,"endLine":266,"endColumn":0,"executionContextId":1,"hash":"197d9cc1a008c64a363a84300b58c45619f3a6ce","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":5562,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.206 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/type-is/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\type-is\index.js. pathMapping/webroot: undefined
[10:46:41.206 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\type-is\\index.js","origin":"read-only core module"}}}
[10:46:41.207 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"170","url":"file:///c:/<path_to�>/Test/node_modules/media-typer/index.js","startLine":0,"startColumn":0,"endLine":270,"endColumn":0,"executionContextId":1,"hash":"0b91a5b217b7c57b07f9c2cb9e8ffc8b6f70a461","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":6375,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.208 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/media-typer/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\media-typer\index.js. pathMapping/webroot: undefined
[10:46:41.208 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\media-typer\\index.js","origin":"read-only core module"}}}
[10:46:41.208 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"171","url":"","startLine":0,"startColumn":0,"endLine":4,"endColumn":2,"executionContextId":1,"hash":"119a0412864d121e5c5973355e2ace175e3fdf4f","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":98,"stackTrace":{"callFrames":[{"functionName":"wrapfunction","scriptId":"61","url":"file:///c:/<path_to�>/Test/node_modules/depd/index.js","lineNumber":412,"columnNumber":41}]}}}
[10:46:41.210 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"172","url":"","startLine":0,"startColumn":0,"endLine":4,"endColumn":2,"executionContextId":1,"hash":"119a0412864d121e5c5973355e2ace175e3fdf4f","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":98,"stackTrace":{"callFrames":[{"functionName":"wrapfunction","scriptId":"61","url":"file:///c:/<path_to�>/Test/node_modules/depd/index.js","lineNumber":412,"columnNumber":41}]}}}
[10:46:41.210 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"173","url":"","startLine":0,"startColumn":0,"endLine":4,"endColumn":2,"executionContextId":1,"hash":"119a0412864d121e5c5973355e2ace175e3fdf4f","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":98,"stackTrace":{"callFrames":[{"functionName":"wrapfunction","scriptId":"61","url":"file:///c:/<path_to�>/Test/node_modules/depd/index.js","lineNumber":412,"columnNumber":41}]}}}
[10:46:41.210 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"174","url":"","startLine":0,"startColumn":0,"endLine":4,"endColumn":2,"executionContextId":1,"hash":"119a0412864d121e5c5973355e2ace175e3fdf4f","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":98,"stackTrace":{"callFrames":[{"functionName":"wrapfunction","scriptId":"61","url":"file:///c:/<path_to�>/Test/node_modules/depd/index.js","lineNumber":412,"columnNumber":41}]}}}
[10:46:41.210 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM171","path":"<eval>/VM171","sourceReference":1167,"origin":"read-only content from Node.js"}}}
[10:46:41.211 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM172","path":"<eval>/VM172","sourceReference":1168,"origin":"read-only content from Node.js"}}}
[10:46:41.211 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM173","path":"<eval>/VM173","sourceReference":1169,"origin":"read-only content from Node.js"}}}
[10:46:41.212 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"175","url":"file:///c:/<path_to�>/Test/node_modules/express/lib/response.js","startLine":0,"startColumn":0,"endLine":1142,"endColumn":0,"executionContextId":1,"hash":"2c0b038822b8639443180c9375dfb3c92d092250","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":27124,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.212 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM174","path":"<eval>/VM174","sourceReference":1170,"origin":"read-only content from Node.js"}}}
[10:46:41.213 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/express/lib/response.js to c:\Users\Steve\Documents\Github\Test\node_modules\express\lib\response.js. pathMapping/webroot: undefined
[10:46:41.213 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"response.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\express\\lib\\response.js","origin":"read-only core module"}}}
[10:46:41.214 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"176","url":"file:///c:/<path_to�>/Test/node_modules/cookie-signature/index.js","startLine":0,"startColumn":0,"endLine":51,"endColumn":0,"executionContextId":1,"hash":"291edd0d07834d2a21f0d91c474a52651a03120f","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1230,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.215 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/cookie-signature/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\cookie-signature\index.js. pathMapping/webroot: undefined
[10:46:41.215 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\cookie-signature\\index.js","origin":"read-only core module"}}}
[10:46:41.216 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"177","url":"file:///c:/<path_to�>/Test/node_modules/cookie/index.js","startLine":0,"startColumn":0,"endLine":198,"endColumn":0,"executionContextId":1,"hash":"2660dcdc6a7515847a14a584b4f2e09e4f9ac484","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":4037,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.217 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/cookie/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\cookie\index.js. pathMapping/webroot: undefined
[10:46:41.217 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\cookie\\index.js","origin":"read-only core module"}}}
[10:46:41.217 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"178","url":"file:///c:/<path_to�>/Test/node_modules/vary/index.js","startLine":0,"startColumn":0,"endLine":149,"endColumn":0,"executionContextId":1,"hash":"2a394f5f3fbcf1103c318a5647bda7d57df4c333","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2930,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.218 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"179","url":"","startLine":0,"startColumn":0,"endLine":4,"endColumn":2,"executionContextId":1,"hash":"03be421862ac062c2cc689e5379f5f1a0356f36b","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":114,"stackTrace":{"callFrames":[{"functionName":"wrapfunction","scriptId":"61","url":"file:///c:/<path_to�>/Test/node_modules/depd/index.js","lineNumber":412,"columnNumber":41}]}}}
[10:46:41.218 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/vary/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\vary\index.js. pathMapping/webroot: undefined
[10:46:41.218 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\vary\\index.js","origin":"read-only core module"}}}
[10:46:41.219 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM179","path":"<eval>/VM179","sourceReference":1175,"origin":"read-only content from Node.js"}}}
[10:46:41.220 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"180","url":"file:///c:/<path_to�>/Test/node_modules/body-parser/lib/types/json.js","startLine":0,"startColumn":0,"endLine":230,"endColumn":0,"executionContextId":1,"hash":"2e3600688424fa045708bc5954af773e3b1d0075","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":4918,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.220 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/body-parser/lib/types/json.js to c:\Users\Steve\Documents\Github\Test\node_modules\body-parser\lib\types\json.js. pathMapping/webroot: undefined
[10:46:41.221 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"json.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\body-parser\\lib\\types\\json.js","origin":"read-only core module"}}}
[10:46:41.221 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"181","url":"file:///c:/<path_to�>/Test/node_modules/bytes/index.js","startLine":0,"startColumn":0,"endLine":162,"endColumn":0,"executionContextId":1,"hash":"222ec694831895aa44f1b54a089eaebd737bbd60","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3469,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.222 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/bytes/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\bytes\index.js. pathMapping/webroot: undefined
[10:46:41.222 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\bytes\\index.js","origin":"read-only core module"}}}
[10:46:41.223 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"182","url":"file:///c:/<path_to�>/Test/node_modules/body-parser/lib/read.js","startLine":0,"startColumn":0,"endLine":181,"endColumn":0,"executionContextId":1,"hash":"2f305da844d6bea53a58c71344052cd77924ff1c","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3894,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.224 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/body-parser/lib/read.js to c:\Users\Steve\Documents\Github\Test\node_modules\body-parser\lib\read.js. pathMapping/webroot: undefined
[10:46:41.224 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"read.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\body-parser\\lib\\read.js","origin":"read-only core module"}}}
[10:46:41.225 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"183","url":"file:///c:/<path_to�>/Test/node_modules/raw-body/index.js","startLine":0,"startColumn":0,"endLine":286,"endColumn":0,"executionContextId":1,"hash":"1035b00d7b6513be159a2d7a00e896236bc61929","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":6059,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.226 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/raw-body/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\raw-body\index.js. pathMapping/webroot: undefined
[10:46:41.226 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\raw-body\\index.js","origin":"read-only core module"}}}
[10:46:41.228 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"184","url":"file:///c:/<path_to�>/Test/node_modules/iconv-lite/lib/index.js","startLine":0,"startColumn":0,"endLine":153,"endColumn":0,"executionContextId":1,"hash":"07ea18d19d9334d8639657906070dec5176b0198","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":5120,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.229 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/iconv-lite/lib/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\iconv-lite\lib\index.js. pathMapping/webroot: undefined
[10:46:41.229 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\iconv-lite\\lib\\index.js","origin":"read-only core module"}}}
[10:46:41.230 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"185","url":"file:///c:/<path_to�>/Test/node_modules/safer-buffer/safer.js","startLine":0,"startColumn":0,"endLine":77,"endColumn":0,"executionContextId":1,"hash":"32bf698c705556d454c60f116217ebfc5a03d131","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2110,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.231 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/safer-buffer/safer.js to c:\Users\Steve\Documents\Github\Test\node_modules\safer-buffer\safer.js. pathMapping/webroot: undefined
[10:46:41.231 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"safer.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\safer-buffer\\safer.js","origin":"read-only core module"}}}
[10:46:41.231 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"186","url":"file:///c:/<path_to�>/Test/node_modules/iconv-lite/lib/bom-handling.js","startLine":0,"startColumn":0,"endLine":52,"endColumn":0,"executionContextId":1,"hash":"3339dadd7d7887a650ce0c665b98c95c4b17a725","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1109,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.232 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/iconv-lite/lib/bom-handling.js to c:\Users\Steve\Documents\Github\Test\node_modules\iconv-lite\lib\bom-handling.js. pathMapping/webroot: undefined
[10:46:41.232 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"bom-handling.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\iconv-lite\\lib\\bom-handling.js","origin":"read-only core module"}}}
[10:46:41.233 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"187","url":"file:///c:/<path_to�>/Test/node_modules/iconv-lite/lib/streams.js","startLine":0,"startColumn":0,"endLine":121,"endColumn":0,"executionContextId":1,"hash":"18679271539d662d711d8079a5cff9aa6699d5b5","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3387,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.234 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/iconv-lite/lib/streams.js to c:\Users\Steve\Documents\Github\Test\node_modules\iconv-lite\lib\streams.js. pathMapping/webroot: undefined
[10:46:41.234 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"streams.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\iconv-lite\\lib\\streams.js","origin":"read-only core module"}}}
[10:46:41.235 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"188","url":"file:///c:/<path_to�>/Test/node_modules/iconv-lite/lib/extend-node.js","startLine":0,"startColumn":0,"endLine":217,"endColumn":0,"executionContextId":1,"hash":"19a6a58a542b9dd547f5925ca68b488a30e77843","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":8701,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.235 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/iconv-lite/lib/extend-node.js to c:\Users\Steve\Documents\Github\Test\node_modules\iconv-lite\lib\extend-node.js. pathMapping/webroot: undefined
[10:46:41.236 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"extend-node.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\iconv-lite\\lib\\extend-node.js","origin":"read-only core module"}}}
[10:46:41.236 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"189","url":"zlib.js","startLine":0,"startColumn":0,"endLine":918,"endColumn":0,"executionContextId":1,"hash":"2f3d823fa24c7a267e28430017baf6dd16c043bb","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":29077,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.237 UTC] Paths.scriptParsed: could not resolve zlib.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.237 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"zlib.js","path":"<node_internals>/zlib.js","sourceReference":1185,"origin":"read-only core module"}}}
[10:46:41.239 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"190","url":"file:///c:/<path_to�>/Test/node_modules/body-parser/lib/types/raw.js","startLine":0,"startColumn":0,"endLine":101,"endColumn":0,"executionContextId":1,"hash":"123d80e195a7c90324bb943298a9f7ae6dcc1278","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1884,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.240 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/body-parser/lib/types/raw.js to c:\Users\Steve\Documents\Github\Test\node_modules\body-parser\lib\types\raw.js. pathMapping/webroot: undefined
[10:46:41.240 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"raw.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\body-parser\\lib\\types\\raw.js","origin":"read-only core module"}}}
[10:46:41.241 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"191","url":"file:///c:/<path_to�>/Test/node_modules/serve-static/index.js","startLine":0,"startColumn":0,"endLine":210,"endColumn":0,"executionContextId":1,"hash":"045ae329956d3d084c27694e08968bc978c5f26c","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":4570,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.242 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/serve-static/index.js to c:\Users\Steve\Documents\Github\Test\node_modules\serve-static\index.js. pathMapping/webroot: undefined
[10:46:41.242 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\serve-static\\index.js","origin":"read-only core module"}}}
[10:46:41.243 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"192","url":"file:///c:/<path_to�>/Test/node_modules/body-parser/lib/types/text.js","startLine":0,"startColumn":0,"endLine":121,"endColumn":0,"executionContextId":1,"hash":"029e439700bf36d179cbe1b008adc8c61f2dabbe","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2285,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.244 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/body-parser/lib/types/text.js to c:\Users\Steve\Documents\Github\Test\node_modules\body-parser\lib\types\text.js. pathMapping/webroot: undefined
[10:46:41.244 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"text.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\body-parser\\lib\\types\\text.js","origin":"read-only core module"}}}
[10:46:41.245 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"193","url":"file:///c:/<path_to�>/Test/node_modules/body-parser/lib/types/urlencoded.js","startLine":0,"startColumn":0,"endLine":284,"endColumn":0,"executionContextId":1,"hash":"2947ed426104630b0f63c77b9346dcad127adda8","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":5797,"stackTrace":{"callFrames":[{"functionName":"wrapSafe","scriptId":"46","url":"internal/modules/cjs/loader.js","lineNumber":1069,"columnNumber":15}]}}}
[10:46:41.245 UTC] Paths.scriptParsed: resolved file:///c:/<path_to�>/Test/node_modules/body-parser/lib/types/urlencoded.js to c:\Users\Steve\Documents\Github\Test\node_modules\body-parser\lib\types\urlencoded.js. pathMapping/webroot: undefined
[10:46:41.246 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"urlencoded.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\node_modules\\body-parser\\lib\\types\\urlencoded.js","origin":"read-only core module"}}}
[10:46:41.254 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"194","url":"cluster.js","startLine":0,"startColumn":0,"endLine":25,"endColumn":0,"executionContextId":1,"hash":"21140d3f94d66c482c6280f73eb2675e3b6ea00b","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1313,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.254 UTC] Paths.scriptParsed: could not resolve cluster.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.254 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"195","url":"internal/cluster/master.js","startLine":0,"startColumn":0,"endLine":380,"endColumn":0,"executionContextId":1,"hash":"2d74973591192e354c458c1dc5dd395d6a0ef5f2","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":11099,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.254 UTC] Paths.scriptParsed: could not resolve internal/cluster/master.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.255 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"cluster.js","path":"<node_internals>/cluster.js","sourceReference":1190,"origin":"read-only core module"}}}
[10:46:41.255 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"196","url":"child_process.js","startLine":0,"startColumn":0,"endLine":711,"endColumn":0,"executionContextId":1,"hash":"13903e8712c9a7b613bb2ccd7233529f745f310b","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":19828,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.255 UTC] Paths.scriptParsed: could not resolve child_process.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.255 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"master.js","path":"<node_internals>/internal/cluster/master.js","sourceReference":1191,"origin":"read-only core module"}}}
[10:46:41.256 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"197","url":"internal/child_process.js","startLine":0,"startColumn":0,"endLine":1055,"endColumn":0,"executionContextId":1,"hash":"1e0d00c828df02e8788686268f01ca6a47012e70","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":30745,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.256 UTC] Paths.scriptParsed: could not resolve internal/child_process.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.256 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"child_process.js","path":"<node_internals>/child_process.js","sourceReference":1192,"origin":"read-only core module"}}}
[10:46:41.257 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"child_process.js","path":"<node_internals>/internal/child_process.js","sourceReference":1193,"origin":"read-only core module"}}}
[10:46:41.257 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"198","url":"dgram.js","startLine":0,"startColumn":0,"endLine":1045,"endColumn":0,"executionContextId":1,"hash":"06df70fb757c36a034a9a8289a6638342547b13e","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":27658,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.257 UTC] Paths.scriptParsed: could not resolve dgram.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.258 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"dgram.js","path":"<node_internals>/dgram.js","sourceReference":1194,"origin":"read-only core module"}}}
[10:46:41.258 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"199","url":"internal/dgram.js","startLine":0,"startColumn":0,"endLine":86,"endColumn":0,"executionContextId":1,"hash":"04a624459affa6c5025cf15a064fd8e34aca9865","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1930,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.258 UTC] Paths.scriptParsed: could not resolve internal/dgram.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.258 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"dgram.js","path":"<node_internals>/internal/dgram.js","sourceReference":1195,"origin":"read-only core module"}}}
[10:46:41.259 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"200","url":"internal/socket_list.js","startLine":0,"startColumn":0,"endLine":108,"endColumn":0,"executionContextId":1,"hash":"26769b242029e6f71e1c4f4d2b1579e23797fa5d","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":2813,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.261 UTC] Paths.scriptParsed: could not resolve internal/socket_list.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.261 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"201","url":"internal/cluster/round_robin_handle.js","startLine":0,"startColumn":0,"endLine":128,"endColumn":0,"executionContextId":1,"hash":"0fb487c79d2f581319d04c1b4973d03c210bb871","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":3291,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.262 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"202","url":"internal/cluster/utils.js","startLine":0,"startColumn":0,"endLine":49,"endColumn":0,"executionContextId":1,"hash":"187510e88da943bb09a998191eac99c2776cba09","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1056,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.262 UTC] Paths.scriptParsed: could not resolve internal/cluster/round_robin_handle.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.262 UTC] Paths.scriptParsed: could not resolve internal/cluster/utils.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.262 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"socket_list.js","path":"<node_internals>/internal/socket_list.js","sourceReference":1196,"origin":"read-only core module"}}}
[10:46:41.263 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"203","url":"internal/cluster/shared_handle.js","startLine":0,"startColumn":0,"endLine":46,"endColumn":0,"executionContextId":1,"hash":"1bcfcccf6aa4651a0a96a2dd3110e6f81c44a4e7","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1166,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.263 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"204","url":"internal/cluster/worker.js","startLine":0,"startColumn":0,"endLine":54,"endColumn":0,"executionContextId":1,"hash":"30a064585b78b15954b3b090a418000e26ad5658","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":1323,"stackTrace":{"callFrames":[{"functionName":"compileForInternalLoader","scriptId":"6","url":"internal/bootstrap/loaders.js","lineNumber":277,"columnNumber":17}]}}}
[10:46:41.263 UTC] Paths.scriptParsed: could not resolve internal/cluster/shared_handle.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.263 UTC] Paths.scriptParsed: could not resolve internal/cluster/worker.js to a file with pathMapping/webRoot: undefined. It may be external or served directly from the server's memory (and that's OK).
[10:46:41.263 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"round_robin_handle.js","path":"<node_internals>/internal/cluster/round_robin_handle.js","sourceReference":1197,"origin":"read-only core module"}}}
[10:46:41.264 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"utils.js","path":"<node_internals>/internal/cluster/utils.js","sourceReference":1198,"origin":"read-only core module"}}}
[10:46:41.265 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"shared_handle.js","path":"<node_internals>/internal/cluster/shared_handle.js","sourceReference":1199,"origin":"read-only core module"}}}
[10:46:41.265 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"worker.js","path":"<node_internals>/internal/cluster/worker.js","sourceReference":1200,"origin":"read-only core module"}}}
[10:46:41.268 UTC] ← From target: {"method":"Console.messageAdded","params":{"message":{"source":"console-api","level":"log","text":"Example app listening at http://localhost:3000","url":"c:\\Users\\Steve\\Documents\\Github\\Test\\index.js","line":7,"column":32}}}
[10:46:41.268 UTC] ← From target: {"method":"Runtime.consoleAPICalled","params":{"type":"log","args":[{"type":"string","value":"Example app listening at http://localhost:3000"}],"executionContextId":1,"timestamp":1586774801266.348,"stackTrace":{"callFrames":[{"functionName":"","scriptId":"56","url":"file:///c:/<path_to�>/Test/index.js","lineNumber":6,"columnNumber":31},{"functionName":"onceWrapper","scriptId":"10","url":"events.js","lineNumber":415,"columnNumber":27},{"functionName":"emit","scriptId":"10","url":"events.js","lineNumber":309,"columnNumber":19},{"functionName":"emitListeningNT","scriptId":"70","url":"net.js","lineNumber":1346,"columnNumber":9},{"functionName":"processTicksAndRejections","scriptId":"20","url":"internal/process/task_queues.js","lineNumber":82,"columnNumber":20}],"parentId":{"id":"1"}}}}
[10:46:41.272 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"stdout","output":"Example app listening at http://localhost:3000\n","source":{"name":"index.js","path":"c:\\Users\\Steve\\Documents\\Github\\Test\\index.js"},"line":7,"column":32}}
[10:46:41.350 UTC] From client: evaluate({"expression":"process.pid"})
[10:46:41.351 UTC] → To target: "{\"id\":15,\"method\":\"Runtime.evaluate\",\"params\":{\"expression\":\"process.pid\",\"silent\":true,\"includeCommandLineAPI\":true,\"objectGroup\":\"console\",\"userGesture\":true,\"generatePreview\":true,\"contextId\":1}}"
[10:46:41.353 UTC] ← From target: {"method":"Debugger.scriptParsed","params":{"scriptId":"205","url":"","startLine":0,"startColumn":0,"endLine":0,"endColumn":11,"executionContextId":1,"hash":"165082f76ff1005065db70583da60b914215d612","executionContextAuxData":{"isDefault":true},"isLiveEdit":false,"sourceMapURL":"","hasSourceURL":false,"isModule":false,"length":11}}
[10:46:41.354 UTC] ← From target: {"id":15,"result":{"result":{"type":"number","value":9604,"description":"9604"}}}
[10:46:41.354 UTC] To client: {"seq":0,"type":"response","request_seq":7,"command":"evaluate","success":true,"body":{"result":"9604","variablesReference":0,"type":"number"}}
[10:46:41.355 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"telemetry","output":"ClientRequest/evaluate","data":{"Versions.DebugAdapterCore":"6.8.7","Versions.DebugAdapter":"1.42.2","Versions.Target.Version":"v12.16.2","successful":"true","timeTakenInMilliseconds":"4.4458","requestType":"request"}}}
[10:46:41.355 UTC] To client: {"seq":0,"type":"event","event":"loadedSource","body":{"reason":"new","source":{"name":"VM205","path":"<eval>/VM205","sourceReference":1201,"origin":"read-only content from Node.js"}}}
[10:46:50.083 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"telemetry","output":"target/notification/onScriptParsed","data":{"Versions.DebugAdapterCore":"6.8.7","Versions.DebugAdapter":"1.42.2","Versions.Target.Version":"v12.16.2","aggregated.startTime":"[\"1586774800799\",\"1586774800801\",\"1586774800804\",\"1586774800805\",\"1586774800805\",\"1586774800808\",\"1586774800815\",\"1586774800817\",\"1586774800818\",\"1586774800819\",\"1586774800819\",\"1586774800823\",\"1586774800824\",\"1586774800825\",\"1586774800827\",\"1586774800828\",\"1586774800829\",\"1586774800829\",\"1586774800830\",\"1586774800830\",\"1586774800831\",\"1586774800831\",\"1586774800833\",\"1586774800833\",\"1586774800834\",\"1586774800835\",\"1586774800837\",\"1586774800837\",\"1586774800838\",\"1586774800838\",\"1586774800841\",\"1586774800841\",\"1586774800841\",\"1586774800842\",\"1586774800842\",\"1586774800843\",\"1586774800844\",\"1586774800844\",\"1586774800845\",\"1586774800846\",\"1586774800847\",\"1586774800848\",\"1586774800859\",\"1586774800860\",\"1586774800864\",\"1586774800866\",\"1586774800866\",\"1586774800867\",\"1586774800867\",\"1586774800867\",\"1586774800868\",\"1586774800870\",\"1586774800892\",\"1586774800912\",\"1586774800985\",\"1586774800986\",\"1586774800989\",\"1586774800992\",\"1586774800997\",\"1586774800999\",\"1586774801002\",\"1586774801004\",\"1586774801006\",\"1586774801007\",\"1586774801009\",\"1586774801008\",\"1586774801010\",\"1586774801012\",\"1586774801012\",\"1586774801013\",\"1586774801013\",\"1586774801014\",\"1586774801015\",\"1586774801018\",\"1586774801020\",\"1586774801020\",\"1586774801021\",\"1586774801022\",\"1586774801023\",\"1586774801024\",\"1586774801028\",\"1586774801028\",\"1586774801028\",\"1586774801029\",\"1586774801031\",\"1586774801033\",\"1586774801041\",\"1586774801043\",\"1586774801045\",\"1586774801047\",\"1586774801049\",\"1586774801052\",\"1586774801056\",\"1586774801059\",\"1586774801060\",\"1586774801063\",\"1586774801064\",\"1586774801068\",\"1586774801071\",\"1586774801070\",\"1586774801072\",\"1586774801073\",\"1586774801074\",\"1586774801076\",\"1586774801079\",\"1586774801082\",\"1586774801083\",\"1586774801085\",\"1586774801087\",\"1586774801089\",\"1586774801091\",\"1586774801093\",\"1586774801095\",\"1586774801097\",\"1586774801099\",\"1586774801101\",\"1586774801103\",\"1586774801105\",\"1586774801108\",\"1586774801110\",\"1586774801112\",\"1586774801114\",\"1586774801118\",\"1586774801120\",\"1586774801123\",\"1586774801124\",\"1586774801131\",\"1586774801136\",\"1586774801136\",\"1586774801141\",\"1586774801140\",\"1586774801146\",\"1586774801146\",\"1586774801147\",\"1586774801151\",\"1586774801151\",\"1586774801151\",\"1586774801151\",\"1586774801152\",\"1586774801152\",\"1586774801152\",\"1586774801152\",\"1586774801152\",\"1586774801154\",\"1586774801154\",\"1586774801164\",\"1586774801167\",\"1586774801167\",\"1586774801168\",\"1586774801169\",\"1586774801170\",\"1586774801171\",\"1586774801172\",\"1586774801174\",\"1586774801175\",\"1586774801180\",\"1586774801182\",\"1586774801183\",\"1586774801183\",\"1586774801185\",\"1586774801187\",\"1586774801188\",\"1586774801190\",\"1586774801192\",\"1586774801195\",\"1586774801205\",\"1586774801207\",\"1586774801208\",\"1586774801210\",\"1586774801210\",\"1586774801210\",\"1586774801212\",\"1586774801214\",\"1586774801216\",\"1586774801218\",\"1586774801218\",\"1586774801220\",\"1586774801221\",\"1586774801223\",\"1586774801225\",\"1586774801228\",\"1586774801230\",\"1586774801231\",\"1586774801233\",\"1586774801235\",\"1586774801236\",\"1586774801239\",\"1586774801241\",\"1586774801243\",\"1586774801245\",\"1586774801254\",\"1586774801254\",\"1586774801255\",\"1586774801256\",\"1586774801257\",\"1586774801258\",\"1586774801259\",\"1586774801262\",\"1586774801262\",\"1586774801263\",\"1586774801263\",\"1586774801353\"]","aggregated.successful":"[\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\",\"true\"]","aggregated.timeTakenInMilliseconds":"[\"4.466001\",\"2.2318\",\"3.2068\",\"2.894599\",\"2.6177\",\"0.4307\",\"0.369401\",\"0.343199\",\"0.235001\",\"0.254699\",\"0.2179\",\"0.2666\",\"0.2487\",\"0.443701\",\"0.3789\",\"0.2896\",\"0.2814\",\"0.239999\",\"0.2334\",\"0.228999\",\"0.2402\",\"0.260201\",\"0.304\",\"0.251901\",\"0.2352\",\"0.374299\",\"0.3436\",\"0.2942\",\"0.2659\",\"2.481001\",\"0.8858\",\"0.7201\",\"0.570899\",\"0.631801\",\"0.4454\",\"0.217299\",\"0.2468\",\"0.2213\",\"0.246801\",\"0.1984\",\"0.3244\",\"0.227499\",\"0.395801\",\"0.304199\",\"0.399\",\"0.5576\",\"0.3377\",\"0.194\",\"0.188299\",\"0.181\",\"0.164301\",\"0.2932\",\"1.707499\",\"0.3877\",\"1.027401\",\"0.9498\",\"0.776199\",\"0.8952\",\"0.857099\",\"0.5302\",\"0.813201\",\"0.7335\",\"0.631801\",\"0.5983\",\"0.2776\",\"1.2458\",\"0.3515\",\"0.5124\",\"0.315401\",\"0.531201\",\"0.2982\",\"0.2298\",\"3.820901\",\"0.4152\",\"0.5222\",\"0.290901\",\"0.219599\",\"0.3371\",\"0.1906\",\"0.2279\",\"0.441\",\"0.1771\",\"0.2144\",\"0.2086\",\"0.7225\",\"0.6997\",\"0.7672\",\"0.669799\",\"0.734501\",\"0.6176\",\"0.833\",\"0.9771\",\"0.9778\",\"0.7447\",\"0.651001\",\"0.8011\",\"0.823601\",\"1.035601\",\"0.231301\",\"1.0825\",\"0.1937\",\"0.5554\",\"0.2028\",\"0.458099\",\"0.507699\",\"0.511401\",\"0.214101\",\"0.334399\",\"0.632999\",\"0.632501\",\"0.884901\",\"0.7735\",\"0.827699\",\"0.8815\",\"0.711001\",\"0.7077\",\"0.6992\",\"0.7622\",\"0.735\",\"0.8447\",\"0.842399\",\"0.655\",\"0.5517\",\"0.817499\",\"0.597499\",\"0.609499\",\"0.385001\",\"0.2465\",\"1.0593\",\"0.230801\",\"3.0337\",\"0.490401\",\"0.4196\",\"0.240899\",\"1.937399\",\"1.758399\",\"1.615899\",\"1.465001\",\"1.306799\",\"1.165299\",\"1.0168\",\"0.874401\",\"0.732501\",\"1.130201\",\"0.865801\",\"1.7631\",\"0.226999\",\"1.268\",\"0.2089\",\"0.166701\",\"0.3728\",\"0.3005\",\"0.2644\",\"0.6015\",\"0.7727\",\"0.7957\",\"0.468901\",\"0.345501\",\"0.308799\",\"0.4902\",\"0.6701\",\"0.561801\",\"0.6978\",\"0.8624\",\"0.8017\",\"0.657401\",\"0.849801\",\"0.5695\",\"0.6316\",\"0.4398\",\"0.2809\",\"0.918699\",\"0.661\",\"0.849399\",\"0.1936\",\"0.917099\",\"0.673701\",\"0.603001\",\"0.7586\",\"0.8385\",\"0.8378\",\"0.7041\",\"0.545601\",\"0.743899\",\"0.6506\",\"0.5509\",\"0.9547\",\"0.6742\",\"0.6242\",\"0.7889\",\"0.457201\",\"0.199299\",\"0.1925\",\"0.2253\",\"0.538601\",\"0.419401\",\"2.3952\",\"0.544399\",\"0.304501\",\"0.5027\",\"0.298\",\"0.508\"]"}}}
[10:46:50.084 UTC] To client: {"seq":0,"type":"event","event":"output","body":{"category":"telemetry","output":"target/notification/onPaused","data":{"Versions.DebugAdapterCore":"6.8.7","Versions.DebugAdapter":"1.42.2","Versions.Target.Version":"v12.16.2","aggregated.startTime":"[\"1586774800910\"]","aggregated.successful":"[\"true\"]","aggregated.timeTakenInMilliseconds":"[\"14.3154\"]"}}}
[10:46:52.577 UTC] From client: disconnect({"restart":false})

VS Code version: Code 1.44.0 (2aae1f2, 2020-04-07T23:31:18.860Z)
OS version: Windows_NT x64 10.0.18363

System Info
Item Value
CPUs Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz (4 x 3204)
GPU Status 2d_canvas: enabled
flash_3d: enabled
flash_stage3d: enabled
flash_stage3d_baseline: enabled
gpu_compositing: enabled
multiple_raster_threads: enabled_on
oop_rasterization: unavailable_off
protected_video_decode: unavailable_off
rasterization: unavailable_off
skia_renderer: disabled_off_ok
video_decode: enabled
viz_display_compositor: enabled_on
viz_hit_test_surface_layer: disabled_off_ok
webgl: enabled
webgl2: enabled
Load (avg) undefined
Memory (System) 4.00GB (1.29GB free)
Process Argv
Screen Reader no
VM 0%
Extensions (1)
Extension Author (truncated) Version
debugger-for-chrome msj 4.12.6
@connor4312 connor4312 assigned weinand and unassigned connor4312 Apr 13, 2020
@weinand weinand added the debug Debug viewlet, configurations, breakpoints, adapter issues label Apr 14, 2020
@RockLife2000
Copy link
Author

Still can't get this to work even though it used to. Have given up and resorted to debugging the client in the browser

@weinand
Copy link
Contributor

weinand commented Apr 21, 2020

@RockLife2000 there seems to be a problem with the internal console (debug Console).
Your sample works fine for me if I add a "console": "integratedTerminal", to the launch configuration.

weinand added a commit that referenced this issue Apr 24, 2020
@weinand weinand added this to the April 2020 milestone Apr 24, 2020
@weinand weinand added the bug Issue identified by VS Code Team member as probable bug label Apr 24, 2020
@weinand
Copy link
Contributor

weinand commented Apr 24, 2020

With the introduction of the new extension API method resolveDebugConfigurationWithSubstitutedVariables, the old hook resolveDebugConfiguration no longer receives the expected "node2" debug type but the type "node". As a consequence the "Tracker" that is used to scrape the output events sent to the debug console, is registered for the wrong type "node" (which is not actually used for the new debug protocol).
The fix is to override resolveDebugConfigurationWithSubstitutedVariables instead of resolveDebugConfiguration.

@weinand weinand closed this as completed Apr 24, 2020
@connor4312 connor4312 added the verified Verification succeeded label Apr 29, 2020
@github-actions github-actions bot locked and limited conversation to collaborators Jun 8, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Issue identified by VS Code Team member as probable bug debug Debug viewlet, configurations, breakpoints, adapter issues verified Verification succeeded
Projects
None yet
Development

No branches or pull requests

3 participants