Created
August 20, 2020 10:59
-
-
Save rickstaa/6568468c0fb137ffdb4690e9f9108ae8 to your computer and use it in GitHub Desktop.
Debugpy logs (new version) - debugpy/issues/274
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0 Starting Session: | |
{ | |
"name": "Python: Current File", | |
"type": "python", | |
"request": "launch", | |
"program": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"console": "integratedTerminal", | |
"logToFile": true, | |
"env": { | |
"PYDEVD_THREAD_DUMP_ON_WARN_EVALUATION_TIMEOUT": "true", | |
"PYTHONIOENCODING": "UTF-8", | |
"PYTHONUNBUFFERED": "1" | |
}, | |
"debugAdapterPath": "/home/ricks/Development/dev_tools/debugpy/src/debugpy/adapter", | |
"pythonPath": "/home/ricks/miniconda3/envs/machine_learning_control/bin/python", | |
"cwd": "/home/ricks/Development/machine_learning_control_ws/src", | |
"envFile": "/home/ricks/Development/machine_learning_control_ws/src/.env", | |
"stopOnEntry": false, | |
"showReturnValue": true, | |
"internalConsoleOptions": "neverOpen", | |
"debugOptions": [ | |
"ShowReturnValue" | |
], | |
"justMyCode": true, | |
"workspaceFolder": "/home/ricks/Development/machine_learning_control_ws/src" | |
} | |
13 Client --> Adapter: | |
{ | |
"command": "initialize", | |
"arguments": { | |
"clientID": "vscode", | |
"clientName": "Visual Studio Code - Insiders", | |
"adapterID": "python", | |
"pathFormat": "path", | |
"linesStartAt1": true, | |
"columnsStartAt1": true, | |
"supportsVariableType": true, | |
"supportsVariablePaging": true, | |
"supportsRunInTerminalRequest": true, | |
"locale": "en", | |
"supportsProgressReporting": true | |
}, | |
"type": "request", | |
"seq": 1 | |
} | |
75 Client <-- Adapter: | |
{ | |
"seq": 1, | |
"type": "event", | |
"event": "output", | |
"body": { | |
"category": "telemetry", | |
"output": "ptvsd", | |
"data": { | |
"packageVersion": "1.0.0rc2" | |
} | |
} | |
} | |
76 Client <-- Adapter: | |
{ | |
"seq": 2, | |
"type": "event", | |
"event": "output", | |
"body": { | |
"category": "telemetry", | |
"output": "debugpy", | |
"data": { | |
"packageVersion": "1.0.0rc2" | |
} | |
} | |
} | |
76 Client <-- Adapter: | |
{ | |
"seq": 3, | |
"type": "response", | |
"request_seq": 1, | |
"success": true, | |
"command": "initialize", | |
"body": { | |
"supportsCompletionsRequest": true, | |
"supportsConditionalBreakpoints": true, | |
"supportsConfigurationDoneRequest": true, | |
"supportsDebuggerProperties": true, | |
"supportsDelayedStackTraceLoading": true, | |
"supportsEvaluateForHovers": true, | |
"supportsExceptionInfoRequest": true, | |
"supportsExceptionOptions": true, | |
"supportsHitConditionalBreakpoints": true, | |
"supportsLogPoints": true, | |
"supportsModulesRequest": true, | |
"supportsSetExpression": true, | |
"supportsSetVariable": true, | |
"supportsValueFormattingOptions": true, | |
"supportsTerminateDebuggee": true, | |
"supportsGotoTargetsRequest": true, | |
"exceptionBreakpointFilters": [ | |
{ | |
"filter": "raised", | |
"label": "Raised Exceptions", | |
"default": false | |
}, | |
{ | |
"filter": "uncaught", | |
"label": "Uncaught Exceptions", | |
"default": true | |
} | |
] | |
} | |
} | |
78 Client --> Adapter: | |
{ | |
"command": "launch", | |
"arguments": { | |
"name": "Python: Current File", | |
"type": "python", | |
"request": "launch", | |
"program": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"console": "integratedTerminal", | |
"logToFile": true, | |
"env": { | |
"PYDEVD_THREAD_DUMP_ON_WARN_EVALUATION_TIMEOUT": "true", | |
"PYTHONIOENCODING": "UTF-8", | |
"PYTHONUNBUFFERED": "1" | |
}, | |
"debugAdapterPath": "/home/ricks/Development/dev_tools/debugpy/src/debugpy/adapter", | |
"pythonPath": "/home/ricks/miniconda3/envs/machine_learning_control/bin/python", | |
"cwd": "/home/ricks/Development/machine_learning_control_ws/src", | |
"envFile": "/home/ricks/Development/machine_learning_control_ws/src/.env", | |
"stopOnEntry": false, | |
"showReturnValue": true, | |
"internalConsoleOptions": "neverOpen", | |
"debugOptions": [ | |
"ShowReturnValue" | |
], | |
"justMyCode": true, | |
"workspaceFolder": "/home/ricks/Development/machine_learning_control_ws/src", | |
"__sessionId": "d72d0e4c-49fd-47a8-9ef7-4b531ab69249" | |
}, | |
"type": "request", | |
"seq": 2 | |
} | |
79 Client <-- Adapter: | |
{ | |
"seq": 4, | |
"type": "request", | |
"command": "runInTerminal", | |
"arguments": { | |
"kind": "integrated", | |
"title": "Python Debug Console", | |
"args": [ | |
"/home/ricks/miniconda3/envs/machine_learning_control/bin/python", | |
"/home/ricks/Development/dev_tools/debugpy/src/debugpy/launcher", | |
"36159", | |
"--", | |
"/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py" | |
], | |
"env": { | |
"DEBUGPY_LOG_DIR": "/home/ricks/.vscode-insiders/extensions/ms-python.python-2020.8.101144" | |
}, | |
"cwd": "/home/ricks/Development/machine_learning_control_ws/src" | |
} | |
} | |
107 Client --> Adapter: | |
{ | |
"type": "response", | |
"seq": 3, | |
"command": "runInTerminal", | |
"request_seq": 4, | |
"success": true, | |
"body": { | |
"shellProcessId": 14012 | |
} | |
} | |
619 Client <-- Adapter: | |
{ | |
"seq": 5, | |
"type": "event", | |
"event": "initialized" | |
} | |
625 Client --> Adapter: | |
{ | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "__init__.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/oscillator/__init__.py" | |
}, | |
"lines": [ | |
2 | |
], | |
"breakpoints": [ | |
{ | |
"line": 2 | |
} | |
], | |
"sourceModified": false | |
}, | |
"type": "request", | |
"seq": 4 | |
} | |
626 Client --> Adapter: | |
{ | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "__init__.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py" | |
}, | |
"lines": [ | |
9, | |
14 | |
], | |
"breakpoints": [ | |
{ | |
"line": 9 | |
}, | |
{ | |
"line": 14 | |
} | |
], | |
"sourceModified": false | |
}, | |
"type": "request", | |
"seq": 5 | |
} | |
626 Client --> Adapter: | |
{ | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"lines": [ | |
16, | |
24, | |
26, | |
31, | |
40, | |
47, | |
72, | |
74, | |
83, | |
86, | |
102, | |
116 | |
], | |
"breakpoints": [ | |
{ | |
"line": 16 | |
}, | |
{ | |
"line": 24 | |
}, | |
{ | |
"line": 26 | |
}, | |
{ | |
"line": 31 | |
}, | |
{ | |
"line": 40 | |
}, | |
{ | |
"line": 47 | |
}, | |
{ | |
"line": 72 | |
}, | |
{ | |
"line": 74 | |
}, | |
{ | |
"line": 83 | |
}, | |
{ | |
"line": 86 | |
}, | |
{ | |
"line": 102 | |
}, | |
{ | |
"line": 116 | |
} | |
], | |
"sourceModified": false | |
}, | |
"type": "request", | |
"seq": 6 | |
} | |
626 Client --> Adapter: | |
{ | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "sac.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac2/sac.py" | |
}, | |
"lines": [ | |
54, | |
333 | |
], | |
"breakpoints": [ | |
{ | |
"line": 54, | |
"condition": "len(self.buffer) >= self.capacity" | |
}, | |
{ | |
"line": 333 | |
} | |
], | |
"sourceModified": false | |
}, | |
"type": "request", | |
"seq": 7 | |
} | |
626 Client --> Adapter: | |
{ | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "sac.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/control/algos/sac/sac.py" | |
}, | |
"lines": [ | |
424 | |
], | |
"breakpoints": [ | |
{ | |
"line": 424 | |
} | |
], | |
"sourceModified": false | |
}, | |
"type": "request", | |
"seq": 8 | |
} | |
626 Client --> Adapter: | |
{ | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "setup.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/setup.py" | |
}, | |
"lines": [ | |
13, | |
67 | |
], | |
"breakpoints": [ | |
{ | |
"line": 13 | |
}, | |
{ | |
"line": 67 | |
} | |
], | |
"sourceModified": false | |
}, | |
"type": "request", | |
"seq": 9 | |
} | |
626 Client --> Adapter: | |
{ | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "test_debugger.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py" | |
}, | |
"lines": [ | |
7, | |
8 | |
], | |
"breakpoints": [ | |
{ | |
"line": 7 | |
}, | |
{ | |
"line": 8 | |
} | |
], | |
"sourceModified": false | |
}, | |
"type": "request", | |
"seq": 10 | |
} | |
626 Client --> Adapter: | |
{ | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "test_gym_registration.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_gym_registration.py" | |
}, | |
"lines": [ | |
16 | |
], | |
"breakpoints": [ | |
{ | |
"line": 16 | |
} | |
], | |
"sourceModified": false | |
}, | |
"type": "request", | |
"seq": 11 | |
} | |
627 Client --> Adapter: | |
{ | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "test_is_scalar.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_is_scalar.py" | |
}, | |
"lines": [ | |
8 | |
], | |
"breakpoints": [ | |
{ | |
"line": 8 | |
} | |
], | |
"sourceModified": false | |
}, | |
"type": "request", | |
"seq": 12 | |
} | |
637 Client <-- Adapter: | |
{ | |
"seq": 6, | |
"type": "response", | |
"request_seq": 4, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 0, | |
"source": { | |
"name": "__init__.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/oscillator/__init__.py" | |
}, | |
"line": 1 | |
} | |
] | |
} | |
} | |
645 Client <-- Adapter: | |
{ | |
"seq": 7, | |
"type": "response", | |
"request_seq": 5, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 1, | |
"source": { | |
"name": "__init__.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py" | |
}, | |
"line": 8 | |
}, | |
{ | |
"verified": true, | |
"id": 2, | |
"source": { | |
"name": "__init__.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py" | |
}, | |
"line": 11 | |
} | |
] | |
} | |
} | |
726 Client <-- Adapter: | |
{ | |
"seq": 8, | |
"type": "response", | |
"request_seq": 6, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 3, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 16 | |
}, | |
{ | |
"verified": true, | |
"id": 4, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 24 | |
}, | |
{ | |
"verified": true, | |
"id": 5, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 26 | |
}, | |
{ | |
"verified": true, | |
"id": 6, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 31 | |
}, | |
{ | |
"verified": true, | |
"id": 7, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 40 | |
}, | |
{ | |
"verified": true, | |
"id": 8, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 47 | |
}, | |
{ | |
"verified": true, | |
"id": 9, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 72 | |
}, | |
{ | |
"verified": true, | |
"id": 10, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 74 | |
}, | |
{ | |
"verified": true, | |
"id": 11, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 83 | |
}, | |
{ | |
"verified": true, | |
"id": 12, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 86 | |
}, | |
{ | |
"verified": true, | |
"id": 13, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 102 | |
}, | |
{ | |
"verified": true, | |
"id": 14, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 116 | |
} | |
] | |
} | |
} | |
727 Client <-- Adapter: | |
{ | |
"seq": 9, | |
"type": "response", | |
"request_seq": 7, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": false, | |
"message": "Breakpoint in file that does not exist.", | |
"source": { | |
"name": "sac.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac2/sac.py" | |
}, | |
"line": 54 | |
}, | |
{ | |
"verified": false, | |
"message": "Breakpoint in file that does not exist.", | |
"source": { | |
"name": "sac.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac2/sac.py" | |
}, | |
"line": 333 | |
} | |
] | |
} | |
} | |
731 Client <-- Adapter: | |
{ | |
"seq": 10, | |
"type": "response", | |
"request_seq": 8, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 15, | |
"source": { | |
"name": "sac.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/control/algos/sac/sac.py" | |
}, | |
"line": 422 | |
} | |
] | |
} | |
} | |
734 Client <-- Adapter: | |
{ | |
"seq": 11, | |
"type": "response", | |
"request_seq": 9, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 16, | |
"source": { | |
"name": "setup.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/setup.py" | |
}, | |
"line": 13 | |
}, | |
{ | |
"verified": true, | |
"id": 17, | |
"source": { | |
"name": "setup.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/setup.py" | |
}, | |
"line": 67 | |
} | |
] | |
} | |
} | |
777 Client <-- Adapter: | |
{ | |
"seq": 12, | |
"type": "response", | |
"request_seq": 10, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 18, | |
"source": { | |
"name": "test_debugger.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py" | |
}, | |
"line": 7 | |
}, | |
{ | |
"verified": true, | |
"id": 19, | |
"source": { | |
"name": "test_debugger.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py" | |
}, | |
"line": 8 | |
} | |
] | |
} | |
} | |
779 Client <-- Adapter: | |
{ | |
"seq": 13, | |
"type": "response", | |
"request_seq": 11, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": false, | |
"message": "Breakpoint in file that does not exist.", | |
"source": { | |
"name": "test_gym_registration.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_gym_registration.py" | |
}, | |
"line": 16 | |
} | |
] | |
} | |
} | |
780 Client <-- Adapter: | |
{ | |
"seq": 14, | |
"type": "response", | |
"request_seq": 12, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 20, | |
"source": { | |
"name": "test_is_scalar.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_is_scalar.py" | |
}, | |
"line": 8 | |
} | |
] | |
} | |
} | |
790 Client --> Adapter: | |
{ | |
"command": "setExceptionBreakpoints", | |
"arguments": { | |
"filters": [ | |
"uncaught" | |
] | |
}, | |
"type": "request", | |
"seq": 13 | |
} | |
791 Client <-- Adapter: | |
{ | |
"seq": 15, | |
"type": "response", | |
"request_seq": 13, | |
"success": true, | |
"command": "setExceptionBreakpoints" | |
} | |
795 Client --> Adapter: | |
{ | |
"command": "configurationDone", | |
"type": "request", | |
"seq": 14 | |
} | |
797 Client <-- Adapter: | |
{ | |
"seq": 16, | |
"type": "response", | |
"request_seq": 14, | |
"success": true, | |
"command": "configurationDone" | |
} | |
797 Client <-- Adapter: | |
{ | |
"seq": 17, | |
"type": "response", | |
"request_seq": 2, | |
"success": true, | |
"command": "launch" | |
} | |
797 Client <-- Adapter: | |
{ | |
"seq": 18, | |
"type": "event", | |
"event": "process", | |
"body": { | |
"startMethod": "launch", | |
"isLocalProcess": true, | |
"systemProcessId": 23343, | |
"name": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"pointerSize": 64 | |
} | |
} | |
797 Client <-- Adapter: | |
{ | |
"seq": 19, | |
"type": "event", | |
"event": "thread", | |
"body": { | |
"reason": "started", | |
"threadId": 1 | |
} | |
} | |
798 Client --> Adapter: | |
{ | |
"command": "threads", | |
"type": "request", | |
"seq": 15 | |
} | |
800 Client <-- Adapter: | |
{ | |
"seq": 20, | |
"type": "response", | |
"request_seq": 15, | |
"success": true, | |
"command": "threads", | |
"body": { | |
"threads": [ | |
{ | |
"id": 1, | |
"name": "MainThread" | |
} | |
] | |
} | |
} | |
902 Client --> Adapter: | |
{ | |
"command": "threads", | |
"type": "request", | |
"seq": 16 | |
} | |
905 Client <-- Adapter: | |
{ | |
"seq": 21, | |
"type": "response", | |
"request_seq": 16, | |
"success": true, | |
"command": "threads", | |
"body": { | |
"threads": [ | |
{ | |
"id": 1, | |
"name": "MainThread" | |
} | |
] | |
} | |
} | |
1192 Client <-- Adapter: | |
{ | |
"seq": 22, | |
"type": "event", | |
"event": "stopped", | |
"body": { | |
"reason": "breakpoint", | |
"threadId": 1, | |
"preserveFocusHint": false, | |
"allThreadsStopped": true | |
} | |
} | |
1194 Client --> Adapter: | |
{ | |
"command": "threads", | |
"type": "request", | |
"seq": 17 | |
} | |
1195 Client <-- Adapter: | |
{ | |
"seq": 23, | |
"type": "response", | |
"request_seq": 17, | |
"success": true, | |
"command": "threads", | |
"body": { | |
"threads": [ | |
{ | |
"id": 1, | |
"name": "MainThread" | |
} | |
] | |
} | |
} | |
1197 Client --> Adapter: | |
{ | |
"command": "stackTrace", | |
"arguments": { | |
"threadId": 1, | |
"startFrame": 0, | |
"levels": 1 | |
}, | |
"type": "request", | |
"seq": 18 | |
} | |
1199 Client <-- Adapter: | |
{ | |
"seq": 24, | |
"type": "response", | |
"request_seq": 18, | |
"success": true, | |
"command": "stackTrace", | |
"body": { | |
"stackFrames": [ | |
{ | |
"id": 2, | |
"name": "<module>", | |
"line": 7, | |
"column": 1, | |
"source": { | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"sourceReference": 0 | |
} | |
} | |
], | |
"totalFrames": 1 | |
} | |
} | |
1199 Client <-- Adapter: | |
{ | |
"seq": 25, | |
"type": "event", | |
"event": "module", | |
"body": { | |
"reason": "new", | |
"module": { | |
"id": 0, | |
"name": "__main__", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py" | |
} | |
} | |
} | |
1199 Client <-- Adapter: | |
{ | |
"seq": 26, | |
"type": "event", | |
"event": "module", | |
"body": { | |
"reason": "new", | |
"module": { | |
"id": 1, | |
"name": "runpy", | |
"path": "/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/runpy.py" | |
} | |
} | |
} | |
1614 Client --> Adapter: | |
{ | |
"command": "scopes", | |
"arguments": { | |
"frameId": 2 | |
}, | |
"type": "request", | |
"seq": 19 | |
} | |
1618 Client <-- Adapter: | |
{ | |
"seq": 27, | |
"type": "response", | |
"request_seq": 19, | |
"success": true, | |
"command": "scopes", | |
"body": { | |
"scopes": [ | |
{ | |
"name": "Locals", | |
"variablesReference": 3, | |
"expensive": false, | |
"presentationHint": "locals", | |
"source": {} | |
}, | |
{ | |
"name": "Globals", | |
"variablesReference": 4, | |
"expensive": false, | |
"source": {} | |
} | |
] | |
} | |
} | |
1645 Client --> Adapter: | |
{ | |
"command": "stackTrace", | |
"arguments": { | |
"threadId": 1, | |
"startFrame": 1, | |
"levels": 19 | |
}, | |
"type": "request", | |
"seq": 20 | |
} | |
1646 Client <-- Adapter: | |
{ | |
"seq": 28, | |
"type": "response", | |
"request_seq": 20, | |
"success": true, | |
"command": "stackTrace", | |
"body": { | |
"stackFrames": [], | |
"totalFrames": 1 | |
} | |
} | |
1649 Client --> Adapter: | |
{ | |
"command": "variables", | |
"arguments": { | |
"variablesReference": 3 | |
}, | |
"type": "request", | |
"seq": 21 | |
} | |
1653 Client <-- Adapter: | |
{ | |
"seq": 29, | |
"type": "response", | |
"request_seq": 21, | |
"success": true, | |
"command": "variables", | |
"body": { | |
"variables": [ | |
{ | |
"name": "special variables", | |
"value": "", | |
"type": "", | |
"evaluateName": "special variables", | |
"variablesReference": 5 | |
}, | |
{ | |
"name": "function variables", | |
"value": "", | |
"type": "", | |
"evaluateName": "function variables", | |
"variablesReference": 6 | |
}, | |
{ | |
"name": "np", | |
"value": "<module 'numpy' from '/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/__init__.py'>", | |
"type": "module", | |
"evaluateName": "np", | |
"variablesReference": 7 | |
} | |
] | |
} | |
} | |
3159 Client --> Adapter: | |
{ | |
"command": "evaluate", | |
"arguments": { | |
"expression": "test_array = np.array(2)", | |
"frameId": 2, | |
"context": "repl" | |
}, | |
"type": "request", | |
"seq": 22 | |
} | |
3168 Client <-- Adapter: | |
{ | |
"seq": 30, | |
"type": "response", | |
"request_seq": 22, | |
"success": true, | |
"command": "evaluate", | |
"body": { | |
"result": "", | |
"variablesReference": 0, | |
"presentationHint": {} | |
} | |
} | |
3173 Client --> Adapter: | |
{ | |
"command": "scopes", | |
"arguments": { | |
"frameId": 2 | |
}, | |
"type": "request", | |
"seq": 23 | |
} | |
3218 Client <-- Adapter: | |
{ | |
"seq": 31, | |
"type": "response", | |
"request_seq": 23, | |
"success": true, | |
"command": "scopes", | |
"body": { | |
"scopes": [ | |
{ | |
"name": "Locals", | |
"variablesReference": 3, | |
"expensive": false, | |
"presentationHint": "locals", | |
"source": {} | |
}, | |
{ | |
"name": "Globals", | |
"variablesReference": 4, | |
"expensive": false, | |
"source": {} | |
} | |
] | |
} | |
} | |
3221 Client --> Adapter: | |
{ | |
"command": "variables", | |
"arguments": { | |
"variablesReference": 3 | |
}, | |
"type": "request", | |
"seq": 24 | |
} | |
3230 Client <-- Adapter: | |
{ | |
"seq": 32, | |
"type": "response", | |
"request_seq": 24, | |
"success": true, | |
"command": "variables", | |
"body": { | |
"variables": [ | |
{ | |
"name": "special variables", | |
"value": "", | |
"type": "", | |
"evaluateName": "special variables", | |
"variablesReference": 8 | |
}, | |
{ | |
"name": "function variables", | |
"value": "", | |
"type": "", | |
"evaluateName": "function variables", | |
"variablesReference": 9 | |
}, | |
{ | |
"name": "np", | |
"value": "<module 'numpy' from '/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/__init__.py'>", | |
"type": "module", | |
"evaluateName": "np", | |
"variablesReference": 7 | |
}, | |
{ | |
"name": "test_array", | |
"value": "array(2)", | |
"type": "ndarray", | |
"evaluateName": "test_array", | |
"variablesReference": 10 | |
} | |
] | |
} | |
} | |
4492 Client --> Adapter: | |
{ | |
"command": "variables", | |
"arguments": { | |
"variablesReference": 10 | |
}, | |
"type": "request", | |
"seq": 25 | |
} | |
5277 Client <-- Adapter: | |
{ | |
"seq": 33, | |
"type": "response", | |
"request_seq": 25, | |
"success": false, | |
"command": "variables", | |
"message": "Server[1] disconnected unexpectedly" | |
} | |
5277 Client <-- Adapter: | |
{ | |
"seq": 34, | |
"type": "event", | |
"event": "continued", | |
"body": { | |
"threadId": 1, | |
"allThreadsContinued": true | |
} | |
} | |
5283 Client <-- Adapter: | |
{ | |
"seq": 35, | |
"type": "event", | |
"event": "thread", | |
"body": { | |
"reason": "exited", | |
"threadId": 1 | |
} | |
} | |
5283 Client <-- Adapter: | |
{ | |
"seq": 36, | |
"type": "event", | |
"event": "exited", | |
"body": { | |
"exitCode": 1 | |
} | |
} | |
5284 Client <-- Adapter: | |
{ | |
"seq": 37, | |
"type": "event", | |
"event": "terminated" | |
} | |
5287 Client --> Adapter: | |
{ | |
"command": "disconnect", | |
"arguments": { | |
"restart": false | |
}, | |
"type": "request", | |
"seq": 26 | |
} | |
5287 Client <-- Adapter: | |
{ | |
"seq": 38, | |
"type": "response", | |
"request_seq": 26, | |
"success": true, | |
"command": "disconnect" | |
} | |
5289 Stopping Session | |
5290 Error: | |
{} | |
5290 Exit: | |
Exit-Code: 0 | |
Signal: none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I+00000.009: Linux-5.4.26-050426-generic-x86_64-with-debian-buster-sid x86_64 | |
CPython 3.7.7 (64-bit) | |
debugpy 1.0.0rc2 | |
I+00000.012: debugpy.adapter startup environment: | |
System paths: | |
sys.prefix: /home/ricks/miniconda3/envs/machine_learning_control | |
sys.base_prefix: /home/ricks/miniconda3/envs/machine_learning_control | |
sys.real_prefix: <missing> | |
site.getsitepackages(): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages | |
site.getusersitepackages(): /home/ricks/.local/lib/python3.7/site-packages | |
sys.path (site-packages): /home/ricks/.local/lib/python3.7/site-packages | |
/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages | |
sysconfig.get_path('stdlib'): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7 | |
sysconfig.get_path('platstdlib'): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7 | |
sysconfig.get_path('purelib'): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages | |
sysconfig.get_path('platlib'): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages | |
sysconfig.get_path('include'): /home/ricks/miniconda3/envs/machine_learning_control/include/python3.7m | |
sysconfig.get_path('scripts'): /home/ricks/miniconda3/envs/machine_learning_control/bin | |
sysconfig.get_path('data'): /home/ricks/miniconda3/envs/machine_learning_control | |
os.__file__: /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/os.py | |
threading.__file__: /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/threading.py | |
I+00000.013: Listening for incoming Client connections on 127.0.0.1:40853... | |
I+00000.013: Connecting to client over stdio... | |
D+00000.013: Starting message loop for channel Client[1] | |
D+00000.013: Client[1] --> { | |
"seq": 1, | |
"type": "request", | |
"command": "initialize", | |
"arguments": { | |
"clientID": "vscode", | |
"clientName": "Visual Studio Code - Insiders", | |
"adapterID": "python", | |
"pathFormat": "path", | |
"linesStartAt1": true, | |
"columnsStartAt1": true, | |
"supportsVariableType": true, | |
"supportsVariablePaging": true, | |
"supportsRunInTerminalRequest": true, | |
"locale": "en", | |
"supportsProgressReporting": true | |
} | |
} | |
D+00000.014: Client[1] <-- { | |
"seq": 1, | |
"type": "event", | |
"event": "output", | |
"body": { | |
"category": "telemetry", | |
"output": "ptvsd", | |
"data": { | |
"packageVersion": "1.0.0rc2" | |
} | |
} | |
} | |
D+00000.014: /handling #1 request "initialize" from Client[1]/ | |
Capabilities: { | |
"supportsVariableType": true, | |
"supportsVariablePaging": true, | |
"supportsRunInTerminalRequest": true, | |
"supportsMemoryReferences": false | |
} | |
D+00000.014: /handling #1 request "initialize" from Client[1]/ | |
Expectations: { | |
"locale": "en", | |
"linesStartAt1": true, | |
"columnsStartAt1": true, | |
"pathFormat": "path" | |
} | |
D+00000.014: Client[1] <-- { | |
"seq": 2, | |
"type": "event", | |
"event": "output", | |
"body": { | |
"category": "telemetry", | |
"output": "debugpy", | |
"data": { | |
"packageVersion": "1.0.0rc2" | |
} | |
} | |
} | |
D+00000.015: /handling #1 request "initialize" from Client[1]/ | |
Client[1] <-- { | |
"seq": 3, | |
"type": "response", | |
"request_seq": 1, | |
"success": true, | |
"command": "initialize", | |
"body": { | |
"supportsCompletionsRequest": true, | |
"supportsConditionalBreakpoints": true, | |
"supportsConfigurationDoneRequest": true, | |
"supportsDebuggerProperties": true, | |
"supportsDelayedStackTraceLoading": true, | |
"supportsEvaluateForHovers": true, | |
"supportsExceptionInfoRequest": true, | |
"supportsExceptionOptions": true, | |
"supportsHitConditionalBreakpoints": true, | |
"supportsLogPoints": true, | |
"supportsModulesRequest": true, | |
"supportsSetExpression": true, | |
"supportsSetVariable": true, | |
"supportsValueFormattingOptions": true, | |
"supportsTerminateDebuggee": true, | |
"supportsGotoTargetsRequest": true, | |
"exceptionBreakpointFilters": [ | |
{ | |
"filter": "raised", | |
"label": "Raised Exceptions", | |
"default": false | |
}, | |
{ | |
"filter": "uncaught", | |
"label": "Uncaught Exceptions", | |
"default": true | |
} | |
] | |
} | |
} | |
D+00000.018: Client[1] --> { | |
"seq": 2, | |
"type": "request", | |
"command": "launch", | |
"arguments": { | |
"name": "Python: Current File", | |
"type": "python", | |
"request": "launch", | |
"program": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"console": "integratedTerminal", | |
"logToFile": true, | |
"env": { | |
"PYDEVD_THREAD_DUMP_ON_WARN_EVALUATION_TIMEOUT": "true", | |
"PYTHONIOENCODING": "UTF-8", | |
"PYTHONUNBUFFERED": "1" | |
}, | |
"debugAdapterPath": "/home/ricks/Development/dev_tools/debugpy/src/debugpy/adapter", | |
"pythonPath": "/home/ricks/miniconda3/envs/machine_learning_control/bin/python", | |
"cwd": "/home/ricks/Development/machine_learning_control_ws/src", | |
"envFile": "/home/ricks/Development/machine_learning_control_ws/src/.env", | |
"stopOnEntry": false, | |
"showReturnValue": true, | |
"internalConsoleOptions": "neverOpen", | |
"debugOptions": [ | |
"ShowReturnValue" | |
], | |
"justMyCode": true, | |
"workspaceFolder": "/home/ricks/Development/machine_learning_control_ws/src", | |
"__sessionId": "d72d0e4c-49fd-47a8-9ef7-4b531ab69249" | |
} | |
} | |
I+00000.018: /handling #2 request "launch" from Client[1]/ | |
Listening for incoming Server connections on 127.0.0.1:46227... | |
I+00000.018: /handling #2 request "launch" from Client[1]/ | |
Listening for incoming Launcher connections on 127.0.0.1:36159... | |
I+00000.018: /handling #2 request "launch" from Client[1]/ | |
Session[1] spawning launcher via "runInTerminal" request. | |
D+00000.018: /handling #2 request "launch" from Client[1]/ | |
Client[1] <-- { | |
"seq": 4, | |
"type": "request", | |
"command": "runInTerminal", | |
"arguments": { | |
"kind": "integrated", | |
"title": "Python Debug Console", | |
"args": [ | |
"/home/ricks/miniconda3/envs/machine_learning_control/bin/python", | |
"/home/ricks/Development/dev_tools/debugpy/src/debugpy/launcher", | |
"36159", | |
"--", | |
"/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py" | |
], | |
"env": { | |
"DEBUGPY_LOG_DIR": "/home/ricks/.vscode-insiders/extensions/ms-python.python-2020.8.101144" | |
}, | |
"cwd": "/home/ricks/Development/machine_learning_control_ws/src" | |
} | |
} | |
D+00000.046: Client[1] --> { | |
"seq": 3, | |
"type": "response", | |
"request_seq": 4, | |
"success": true, | |
"command": "runInTerminal", | |
"body": { | |
"shellProcessId": 14012 | |
} | |
} | |
I+00000.155: Accepted incoming Launcher connection from 127.0.0.1:45414. | |
D+00000.155: Starting message loop for channel Launcher[1] | |
D+00000.156: /handling #2 request "launch" from Client[1]/ | |
Launcher[1] <-- { | |
"seq": 1, | |
"type": "request", | |
"command": "launch", | |
"arguments": { | |
"name": "Python: Current File", | |
"type": "python", | |
"request": "launch", | |
"program": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"console": "integratedTerminal", | |
"logToFile": true, | |
"env": { | |
"PYDEVD_THREAD_DUMP_ON_WARN_EVALUATION_TIMEOUT": "true", | |
"PYTHONIOENCODING": "UTF-8", | |
"PYTHONUNBUFFERED": "1" | |
}, | |
"debugAdapterPath": "/home/ricks/Development/dev_tools/debugpy/src/debugpy/adapter", | |
"pythonPath": "/home/ricks/miniconda3/envs/machine_learning_control/bin/python", | |
"cwd": "/home/ricks/Development/machine_learning_control_ws/src", | |
"envFile": "/home/ricks/Development/machine_learning_control_ws/src/.env", | |
"stopOnEntry": false, | |
"showReturnValue": true, | |
"internalConsoleOptions": "neverOpen", | |
"debugOptions": [ | |
"ShowReturnValue" | |
], | |
"justMyCode": true, | |
"workspaceFolder": "/home/ricks/Development/machine_learning_control_ws/src", | |
"__sessionId": "d72d0e4c-49fd-47a8-9ef7-4b531ab69249", | |
"pythonArgs": [], | |
"processName": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"port": 46227, | |
"adapterAccessToken": "ba55f8203b5c007ff6de9e982b467900790dbaf36d23016aa4888c9963090226" | |
} | |
} | |
D+00000.159: Launcher[1] --> { | |
"seq": 1, | |
"type": "event", | |
"event": "process", | |
"body": { | |
"startMethod": "launch", | |
"isLocalProcess": true, | |
"systemProcessId": 23343, | |
"name": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"pointerSize": 64 | |
} | |
} | |
D+00000.159: Launcher[1] --> { | |
"seq": 2, | |
"type": "response", | |
"request_seq": 1, | |
"success": true, | |
"command": "launch" | |
} | |
D+00000.159: /handling #1 event "process" from Launcher[1]/ | |
Propagation deferred. | |
I+00000.159: /handling #2 request "launch" from Client[1]/ | |
Session[1] waiting for connection from debug server... | |
I+00000.393: Accepted incoming Server connection from 127.0.0.1:40696. | |
D+00000.393: Starting message loop for channel Server[?] | |
D+00000.393: Server[?] <-- { | |
"seq": 1, | |
"type": "request", | |
"command": "pydevdAuthorize", | |
"arguments": { | |
"debugServerAccessToken": null | |
} | |
} | |
D+00000.394: Server[?] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 2, | |
"type": "response", | |
"request_seq": 1, | |
"success": true, | |
"command": "pydevdAuthorize", | |
"body": { | |
"clientAccessToken": "ba55f8203b5c007ff6de9e982b467900790dbaf36d23016aa4888c9963090226" | |
} | |
} | |
D+00000.394: Server[?] <-- { | |
"seq": 2, | |
"type": "request", | |
"command": "pydevdSystemInfo" | |
} | |
D+00000.395: Server[?] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 4, | |
"type": "response", | |
"request_seq": 2, | |
"success": true, | |
"command": "pydevdSystemInfo", | |
"body": { | |
"python": { | |
"version": "3.7.7final0", | |
"implementation": { | |
"name": "cpython", | |
"version": "3.7.7final0", | |
"description": "CPython" | |
} | |
}, | |
"platform": { | |
"name": "linux" | |
}, | |
"process": { | |
"pid": 23343, | |
"ppid": 23333, | |
"executable": "/home/ricks/miniconda3/envs/machine_learning_control/bin/python", | |
"bitness": 64 | |
}, | |
"pydevd": { | |
"usingCython": false, | |
"usingFrameEval": false | |
} | |
} | |
} | |
D+00000.395: Server[pid=23343] <-- { | |
"seq": 3, | |
"type": "request", | |
"command": "evaluate", | |
"arguments": { | |
"expression": "\nif 'debugpy' not in sys.modules:\n sys.path.insert(0, '/home/ricks/Development/dev_tools/debugpy/src')\n try:\n import debugpy\n finally:\n del sys.path[0]\n" | |
} | |
} | |
D+00000.498: Server[pid=23343] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 6, | |
"type": "response", | |
"request_seq": 3, | |
"success": true, | |
"command": "evaluate", | |
"body": { | |
"result": "", | |
"variablesReference": 0, | |
"presentationHint": {} | |
} | |
} | |
I+00000.499: No active debug session for parent process of Server[pid=23343]. | |
I+00000.499: /handling #2 request "launch" from Client[1]/ | |
Attaching Server[pid=23343] to Session[1] | |
D+00000.500: /handling #2 request "launch" from Client[1]/ | |
Server[1] <-- { | |
"seq": 4, | |
"type": "request", | |
"command": "pydevdAuthorize", | |
"arguments": { | |
"debugServerAccessToken": null | |
} | |
} | |
D+00000.502: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 8, | |
"type": "response", | |
"request_seq": 4, | |
"success": true, | |
"command": "pydevdAuthorize", | |
"body": { | |
"clientAccessToken": "ba55f8203b5c007ff6de9e982b467900790dbaf36d23016aa4888c9963090226" | |
} | |
} | |
D+00000.503: /handling #2 request "launch" from Client[1]/ | |
Server[1] <-- { | |
"seq": 5, | |
"type": "request", | |
"command": "initialize", | |
"arguments": { | |
"clientID": "vscode", | |
"clientName": "Visual Studio Code - Insiders", | |
"adapterID": "python", | |
"pathFormat": "path", | |
"linesStartAt1": true, | |
"columnsStartAt1": true, | |
"supportsVariableType": true, | |
"supportsVariablePaging": true, | |
"supportsRunInTerminalRequest": true, | |
"locale": "en", | |
"supportsProgressReporting": true | |
} | |
} | |
D+00000.505: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 10, | |
"type": "response", | |
"request_seq": 5, | |
"success": true, | |
"command": "initialize", | |
"body": { | |
"supportsConfigurationDoneRequest": true, | |
"supportsFunctionBreakpoints": false, | |
"supportsConditionalBreakpoints": true, | |
"supportsHitConditionalBreakpoints": true, | |
"supportsEvaluateForHovers": true, | |
"exceptionBreakpointFilters": [ | |
{ | |
"filter": "raised", | |
"label": "Raised Exceptions", | |
"default": false | |
}, | |
{ | |
"filter": "uncaught", | |
"label": "Uncaught Exceptions", | |
"default": true | |
}, | |
{ | |
"filter": "userUnhandled", | |
"label": "User Uncaught Exceptions", | |
"default": false | |
} | |
], | |
"supportsStepBack": false, | |
"supportsSetVariable": true, | |
"supportsRestartFrame": false, | |
"supportsGotoTargetsRequest": true, | |
"supportsStepInTargetsRequest": false, | |
"supportsCompletionsRequest": true, | |
"completionTriggerCharacters": [], | |
"supportsModulesRequest": true, | |
"additionalModuleColumns": [], | |
"supportedChecksumAlgorithms": [], | |
"supportsRestartRequest": false, | |
"supportsExceptionOptions": true, | |
"supportsValueFormattingOptions": true, | |
"supportsExceptionInfoRequest": true, | |
"supportTerminateDebuggee": true, | |
"supportsDelayedStackTraceLoading": true, | |
"supportsLoadedSourcesRequest": false, | |
"supportsLogPoints": true, | |
"supportsTerminateThreadsRequest": false, | |
"supportsSetExpression": true, | |
"supportsTerminateRequest": true, | |
"supportsDataBreakpoints": false, | |
"supportsReadMemoryRequest": false, | |
"supportsDisassembleRequest": false, | |
"supportsDebuggerProperties": true, | |
"pydevd": { | |
"processId": 23343 | |
} | |
} | |
} | |
D+00000.507: /handling #2 request "launch" from Client[1]/ | |
Capabilities: { | |
"supportsCompletionsRequest": true, | |
"supportsConditionalBreakpoints": true, | |
"supportsConfigurationDoneRequest": true, | |
"supportsDataBreakpoints": false, | |
"supportsDelayedStackTraceLoading": true, | |
"supportsDisassembleRequest": false, | |
"supportsEvaluateForHovers": true, | |
"supportsExceptionInfoRequest": true, | |
"supportsExceptionOptions": true, | |
"supportsFunctionBreakpoints": false, | |
"supportsGotoTargetsRequest": true, | |
"supportsHitConditionalBreakpoints": true, | |
"supportsLoadedSourcesRequest": false, | |
"supportsLogPoints": true, | |
"supportsModulesRequest": true, | |
"supportsReadMemoryRequest": false, | |
"supportsRestartFrame": false, | |
"supportsRestartRequest": false, | |
"supportsSetExpression": true, | |
"supportsSetVariable": true, | |
"supportsStepBack": false, | |
"supportsStepInTargetsRequest": false, | |
"supportsTerminateDebuggee": false, | |
"supportsTerminateRequest": true, | |
"supportsTerminateThreadsRequest": false, | |
"supportsValueFormattingOptions": true, | |
"exceptionBreakpointFilters": [ | |
{ | |
"filter": "raised", | |
"label": "Raised Exceptions", | |
"default": false | |
}, | |
{ | |
"filter": "uncaught", | |
"label": "Uncaught Exceptions", | |
"default": true | |
}, | |
{ | |
"filter": "userUnhandled", | |
"label": "User Uncaught Exceptions", | |
"default": false | |
} | |
], | |
"additionalModuleColumns": [], | |
"supportedChecksumAlgorithms": [] | |
} | |
D+00000.507: /handling #2 request "launch" from Client[1]/ | |
Server[1] <-- { | |
"seq": 6, | |
"type": "request", | |
"command": "launch", | |
"arguments": { | |
"name": "Python: Current File", | |
"type": "python", | |
"request": "launch", | |
"program": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"console": "integratedTerminal", | |
"logToFile": true, | |
"env": { | |
"PYDEVD_THREAD_DUMP_ON_WARN_EVALUATION_TIMEOUT": "true", | |
"PYTHONIOENCODING": "UTF-8", | |
"PYTHONUNBUFFERED": "1" | |
}, | |
"debugAdapterPath": "/home/ricks/Development/dev_tools/debugpy/src/debugpy/adapter", | |
"pythonPath": "/home/ricks/miniconda3/envs/machine_learning_control/bin/python", | |
"cwd": "/home/ricks/Development/machine_learning_control_ws/src", | |
"envFile": "/home/ricks/Development/machine_learning_control_ws/src/.env", | |
"stopOnEntry": false, | |
"showReturnValue": true, | |
"internalConsoleOptions": "neverOpen", | |
"debugOptions": [ | |
"ShowReturnValue" | |
], | |
"justMyCode": true, | |
"workspaceFolder": "/home/ricks/Development/machine_learning_control_ws/src", | |
"__sessionId": "d72d0e4c-49fd-47a8-9ef7-4b531ab69249", | |
"pythonArgs": [], | |
"processName": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py" | |
} | |
} | |
D+00000.509: Server[1] --> { | |
"pydevd_cmd_id": 204, | |
"seq": 12, | |
"type": "event", | |
"event": "process", | |
"body": { | |
"name": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"systemProcessId": 23343, | |
"isLocalProcess": true, | |
"startMethod": "launch" | |
} | |
} | |
D+00000.510: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 14, | |
"type": "response", | |
"request_seq": 6, | |
"success": true, | |
"command": "launch" | |
} | |
D+00000.510: /handling #2 request "launch" from Client[1]/ | |
Server[1] <-- { | |
"seq": 7, | |
"type": "request", | |
"command": "setDebuggerProperty", | |
"arguments": { | |
"skipSuspendOnBreakpointException": [ | |
"BaseException" | |
], | |
"skipPrintBreakpointException": [ | |
"NameError" | |
], | |
"multiThreadsSingleNotification": true, | |
"ideOS": "UNIX" | |
} | |
} | |
D+00000.556: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 16, | |
"type": "response", | |
"request_seq": 7, | |
"success": true, | |
"command": "setDebuggerProperty", | |
"body": {} | |
} | |
D+00000.557: /handling #2 request "launch" from Client[1]/ | |
Client[1] <-- { | |
"seq": 5, | |
"type": "event", | |
"event": "initialized" | |
} | |
D+00000.565: Client[1] --> { | |
"seq": 4, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "__init__.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/oscillator/__init__.py" | |
}, | |
"lines": [ | |
2 | |
], | |
"breakpoints": [ | |
{ | |
"line": 2 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.566: Client[1] --> { | |
"seq": 5, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "__init__.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py" | |
}, | |
"lines": [ | |
9, | |
14 | |
], | |
"breakpoints": [ | |
{ | |
"line": 9 | |
}, | |
{ | |
"line": 14 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.567: Client[1] --> { | |
"seq": 6, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"lines": [ | |
16, | |
24, | |
26, | |
31, | |
40, | |
47, | |
72, | |
74, | |
83, | |
86, | |
102, | |
116 | |
], | |
"breakpoints": [ | |
{ | |
"line": 16 | |
}, | |
{ | |
"line": 24 | |
}, | |
{ | |
"line": 26 | |
}, | |
{ | |
"line": 31 | |
}, | |
{ | |
"line": 40 | |
}, | |
{ | |
"line": 47 | |
}, | |
{ | |
"line": 72 | |
}, | |
{ | |
"line": 74 | |
}, | |
{ | |
"line": 83 | |
}, | |
{ | |
"line": 86 | |
}, | |
{ | |
"line": 102 | |
}, | |
{ | |
"line": 116 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.568: /handling #4 request "setBreakpoints" from Client[1]/ | |
Server[1] <-- { | |
"seq": 8, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "__init__.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/oscillator/__init__.py" | |
}, | |
"lines": [ | |
2 | |
], | |
"breakpoints": [ | |
{ | |
"line": 2 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.569: Client[1] --> { | |
"seq": 7, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "sac.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac2/sac.py" | |
}, | |
"lines": [ | |
54, | |
333 | |
], | |
"breakpoints": [ | |
{ | |
"line": 54, | |
"condition": "len(self.buffer) >= self.capacity" | |
}, | |
{ | |
"line": 333 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.570: Client[1] --> { | |
"seq": 8, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "sac.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/control/algos/sac/sac.py" | |
}, | |
"lines": [ | |
424 | |
], | |
"breakpoints": [ | |
{ | |
"line": 424 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.571: Client[1] --> { | |
"seq": 9, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "setup.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/setup.py" | |
}, | |
"lines": [ | |
13, | |
67 | |
], | |
"breakpoints": [ | |
{ | |
"line": 13 | |
}, | |
{ | |
"line": 67 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.572: Client[1] --> { | |
"seq": 10, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "test_debugger.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py" | |
}, | |
"lines": [ | |
7, | |
8 | |
], | |
"breakpoints": [ | |
{ | |
"line": 7 | |
}, | |
{ | |
"line": 8 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.572: Client[1] --> { | |
"seq": 11, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "test_gym_registration.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_gym_registration.py" | |
}, | |
"lines": [ | |
16 | |
], | |
"breakpoints": [ | |
{ | |
"line": 16 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.573: Client[1] --> { | |
"seq": 12, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "test_is_scalar.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_is_scalar.py" | |
}, | |
"lines": [ | |
8 | |
], | |
"breakpoints": [ | |
{ | |
"line": 8 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.574: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 18, | |
"type": "response", | |
"request_seq": 8, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 0, | |
"source": { | |
"name": "__init__.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/oscillator/__init__.py" | |
}, | |
"line": 1 | |
} | |
] | |
} | |
} | |
D+00000.576: /handling #4 request "setBreakpoints" from Client[1]/ | |
Client[1] <-- { | |
"seq": 6, | |
"type": "response", | |
"request_seq": 4, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 0, | |
"source": { | |
"name": "__init__.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/oscillator/__init__.py" | |
}, | |
"line": 1 | |
} | |
] | |
} | |
} | |
D+00000.577: /handling #5 request "setBreakpoints" from Client[1]/ | |
Server[1] <-- { | |
"seq": 9, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "__init__.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py" | |
}, | |
"lines": [ | |
9, | |
14 | |
], | |
"breakpoints": [ | |
{ | |
"line": 9 | |
}, | |
{ | |
"line": 14 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.582: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 20, | |
"type": "response", | |
"request_seq": 9, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 1, | |
"source": { | |
"name": "__init__.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py" | |
}, | |
"line": 8 | |
}, | |
{ | |
"verified": true, | |
"id": 2, | |
"source": { | |
"name": "__init__.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py" | |
}, | |
"line": 11 | |
} | |
] | |
} | |
} | |
D+00000.584: /handling #5 request "setBreakpoints" from Client[1]/ | |
Client[1] <-- { | |
"seq": 7, | |
"type": "response", | |
"request_seq": 5, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 1, | |
"source": { | |
"name": "__init__.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py" | |
}, | |
"line": 8 | |
}, | |
{ | |
"verified": true, | |
"id": 2, | |
"source": { | |
"name": "__init__.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py" | |
}, | |
"line": 11 | |
} | |
] | |
} | |
} | |
D+00000.585: /handling #6 request "setBreakpoints" from Client[1]/ | |
Server[1] <-- { | |
"seq": 10, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"lines": [ | |
16, | |
24, | |
26, | |
31, | |
40, | |
47, | |
72, | |
74, | |
83, | |
86, | |
102, | |
116 | |
], | |
"breakpoints": [ | |
{ | |
"line": 16 | |
}, | |
{ | |
"line": 24 | |
}, | |
{ | |
"line": 26 | |
}, | |
{ | |
"line": 31 | |
}, | |
{ | |
"line": 40 | |
}, | |
{ | |
"line": 47 | |
}, | |
{ | |
"line": 72 | |
}, | |
{ | |
"line": 74 | |
}, | |
{ | |
"line": 83 | |
}, | |
{ | |
"line": 86 | |
}, | |
{ | |
"line": 102 | |
}, | |
{ | |
"line": 116 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.664: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 22, | |
"type": "response", | |
"request_seq": 10, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 3, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 16 | |
}, | |
{ | |
"verified": true, | |
"id": 4, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 24 | |
}, | |
{ | |
"verified": true, | |
"id": 5, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 26 | |
}, | |
{ | |
"verified": true, | |
"id": 6, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 31 | |
}, | |
{ | |
"verified": true, | |
"id": 7, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 40 | |
}, | |
{ | |
"verified": true, | |
"id": 8, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 47 | |
}, | |
{ | |
"verified": true, | |
"id": 9, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 72 | |
}, | |
{ | |
"verified": true, | |
"id": 10, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 74 | |
}, | |
{ | |
"verified": true, | |
"id": 11, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 83 | |
}, | |
{ | |
"verified": true, | |
"id": 12, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 86 | |
}, | |
{ | |
"verified": true, | |
"id": 13, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 102 | |
}, | |
{ | |
"verified": true, | |
"id": 14, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 116 | |
} | |
] | |
} | |
} | |
D+00000.665: /handling #6 request "setBreakpoints" from Client[1]/ | |
Client[1] <-- { | |
"seq": 8, | |
"type": "response", | |
"request_seq": 6, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 3, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 16 | |
}, | |
{ | |
"verified": true, | |
"id": 4, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 24 | |
}, | |
{ | |
"verified": true, | |
"id": 5, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 26 | |
}, | |
{ | |
"verified": true, | |
"id": 6, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 31 | |
}, | |
{ | |
"verified": true, | |
"id": 7, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 40 | |
}, | |
{ | |
"verified": true, | |
"id": 8, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 47 | |
}, | |
{ | |
"verified": true, | |
"id": 9, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 72 | |
}, | |
{ | |
"verified": true, | |
"id": 10, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 74 | |
}, | |
{ | |
"verified": true, | |
"id": 11, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 83 | |
}, | |
{ | |
"verified": true, | |
"id": 12, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 86 | |
}, | |
{ | |
"verified": true, | |
"id": 13, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 102 | |
}, | |
{ | |
"verified": true, | |
"id": 14, | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"line": 116 | |
} | |
] | |
} | |
} | |
D+00000.665: /handling #7 request "setBreakpoints" from Client[1]/ | |
Server[1] <-- { | |
"seq": 11, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "sac.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac2/sac.py" | |
}, | |
"lines": [ | |
54, | |
333 | |
], | |
"breakpoints": [ | |
{ | |
"line": 54, | |
"condition": "len(self.buffer) >= self.capacity" | |
}, | |
{ | |
"line": 333 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.666: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 24, | |
"type": "response", | |
"request_seq": 11, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": false, | |
"message": "Breakpoint in file that does not exist.", | |
"source": { | |
"name": "sac.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac2/sac.py" | |
}, | |
"line": 54 | |
}, | |
{ | |
"verified": false, | |
"message": "Breakpoint in file that does not exist.", | |
"source": { | |
"name": "sac.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac2/sac.py" | |
}, | |
"line": 333 | |
} | |
] | |
} | |
} | |
D+00000.666: /handling #7 request "setBreakpoints" from Client[1]/ | |
Client[1] <-- { | |
"seq": 9, | |
"type": "response", | |
"request_seq": 7, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": false, | |
"message": "Breakpoint in file that does not exist.", | |
"source": { | |
"name": "sac.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac2/sac.py" | |
}, | |
"line": 54 | |
}, | |
{ | |
"verified": false, | |
"message": "Breakpoint in file that does not exist.", | |
"source": { | |
"name": "sac.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac2/sac.py" | |
}, | |
"line": 333 | |
} | |
] | |
} | |
} | |
D+00000.666: /handling #8 request "setBreakpoints" from Client[1]/ | |
Server[1] <-- { | |
"seq": 12, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "sac.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/control/algos/sac/sac.py" | |
}, | |
"lines": [ | |
424 | |
], | |
"breakpoints": [ | |
{ | |
"line": 424 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.670: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 26, | |
"type": "response", | |
"request_seq": 12, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 15, | |
"source": { | |
"name": "sac.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/control/algos/sac/sac.py" | |
}, | |
"line": 422 | |
} | |
] | |
} | |
} | |
D+00000.670: /handling #8 request "setBreakpoints" from Client[1]/ | |
Client[1] <-- { | |
"seq": 10, | |
"type": "response", | |
"request_seq": 8, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 15, | |
"source": { | |
"name": "sac.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/control/algos/sac/sac.py" | |
}, | |
"line": 422 | |
} | |
] | |
} | |
} | |
D+00000.670: /handling #9 request "setBreakpoints" from Client[1]/ | |
Server[1] <-- { | |
"seq": 13, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "setup.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/setup.py" | |
}, | |
"lines": [ | |
13, | |
67 | |
], | |
"breakpoints": [ | |
{ | |
"line": 13 | |
}, | |
{ | |
"line": 67 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.673: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 28, | |
"type": "response", | |
"request_seq": 13, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 16, | |
"source": { | |
"name": "setup.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/setup.py" | |
}, | |
"line": 13 | |
}, | |
{ | |
"verified": true, | |
"id": 17, | |
"source": { | |
"name": "setup.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/setup.py" | |
}, | |
"line": 67 | |
} | |
] | |
} | |
} | |
D+00000.673: /handling #9 request "setBreakpoints" from Client[1]/ | |
Client[1] <-- { | |
"seq": 11, | |
"type": "response", | |
"request_seq": 9, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 16, | |
"source": { | |
"name": "setup.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/setup.py" | |
}, | |
"line": 13 | |
}, | |
{ | |
"verified": true, | |
"id": 17, | |
"source": { | |
"name": "setup.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/setup.py" | |
}, | |
"line": 67 | |
} | |
] | |
} | |
} | |
D+00000.673: /handling #10 request "setBreakpoints" from Client[1]/ | |
Server[1] <-- { | |
"seq": 14, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "test_debugger.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py" | |
}, | |
"lines": [ | |
7, | |
8 | |
], | |
"breakpoints": [ | |
{ | |
"line": 7 | |
}, | |
{ | |
"line": 8 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.716: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 30, | |
"type": "response", | |
"request_seq": 14, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 18, | |
"source": { | |
"name": "test_debugger.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py" | |
}, | |
"line": 7 | |
}, | |
{ | |
"verified": true, | |
"id": 19, | |
"source": { | |
"name": "test_debugger.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py" | |
}, | |
"line": 8 | |
} | |
] | |
} | |
} | |
D+00000.716: /handling #10 request "setBreakpoints" from Client[1]/ | |
Client[1] <-- { | |
"seq": 12, | |
"type": "response", | |
"request_seq": 10, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 18, | |
"source": { | |
"name": "test_debugger.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py" | |
}, | |
"line": 7 | |
}, | |
{ | |
"verified": true, | |
"id": 19, | |
"source": { | |
"name": "test_debugger.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py" | |
}, | |
"line": 8 | |
} | |
] | |
} | |
} | |
D+00000.717: /handling #11 request "setBreakpoints" from Client[1]/ | |
Server[1] <-- { | |
"seq": 15, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "test_gym_registration.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_gym_registration.py" | |
}, | |
"lines": [ | |
16 | |
], | |
"breakpoints": [ | |
{ | |
"line": 16 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.718: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 32, | |
"type": "response", | |
"request_seq": 15, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": false, | |
"message": "Breakpoint in file that does not exist.", | |
"source": { | |
"name": "test_gym_registration.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_gym_registration.py" | |
}, | |
"line": 16 | |
} | |
] | |
} | |
} | |
D+00000.718: /handling #11 request "setBreakpoints" from Client[1]/ | |
Client[1] <-- { | |
"seq": 13, | |
"type": "response", | |
"request_seq": 11, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": false, | |
"message": "Breakpoint in file that does not exist.", | |
"source": { | |
"name": "test_gym_registration.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_gym_registration.py" | |
}, | |
"line": 16 | |
} | |
] | |
} | |
} | |
D+00000.718: /handling #12 request "setBreakpoints" from Client[1]/ | |
Server[1] <-- { | |
"seq": 16, | |
"type": "request", | |
"command": "setBreakpoints", | |
"arguments": { | |
"source": { | |
"name": "test_is_scalar.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_is_scalar.py" | |
}, | |
"lines": [ | |
8 | |
], | |
"breakpoints": [ | |
{ | |
"line": 8 | |
} | |
], | |
"sourceModified": false | |
} | |
} | |
D+00000.719: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 34, | |
"type": "response", | |
"request_seq": 16, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 20, | |
"source": { | |
"name": "test_is_scalar.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_is_scalar.py" | |
}, | |
"line": 8 | |
} | |
] | |
} | |
} | |
D+00000.719: /handling #12 request "setBreakpoints" from Client[1]/ | |
Client[1] <-- { | |
"seq": 14, | |
"type": "response", | |
"request_seq": 12, | |
"success": true, | |
"command": "setBreakpoints", | |
"body": { | |
"breakpoints": [ | |
{ | |
"verified": true, | |
"id": 20, | |
"source": { | |
"name": "test_is_scalar.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_is_scalar.py" | |
}, | |
"line": 8 | |
} | |
] | |
} | |
} | |
D+00000.729: Client[1] --> { | |
"seq": 13, | |
"type": "request", | |
"command": "setExceptionBreakpoints", | |
"arguments": { | |
"filters": [ | |
"uncaught" | |
] | |
} | |
} | |
D+00000.729: /handling #13 request "setExceptionBreakpoints" from Client[1]/ | |
Server[1] <-- { | |
"seq": 17, | |
"type": "request", | |
"command": "setExceptionBreakpoints", | |
"arguments": { | |
"filters": [ | |
"uncaught" | |
] | |
} | |
} | |
D+00000.730: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 36, | |
"type": "response", | |
"request_seq": 17, | |
"success": true, | |
"command": "setExceptionBreakpoints" | |
} | |
D+00000.730: /handling #13 request "setExceptionBreakpoints" from Client[1]/ | |
Client[1] <-- { | |
"seq": 15, | |
"type": "response", | |
"request_seq": 13, | |
"success": true, | |
"command": "setExceptionBreakpoints" | |
} | |
D+00000.734: Client[1] --> { | |
"seq": 14, | |
"type": "request", | |
"command": "configurationDone" | |
} | |
D+00000.735: /handling #14 request "configurationDone" from Client[1]/ | |
Server[1] <-- { | |
"seq": 18, | |
"type": "request", | |
"command": "configurationDone" | |
} | |
D+00000.735: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 38, | |
"type": "response", | |
"request_seq": 18, | |
"success": true, | |
"command": "configurationDone" | |
} | |
D+00000.736: /handling #14 request "configurationDone" from Client[1]/ | |
Client[1] <-- { | |
"seq": 16, | |
"type": "response", | |
"request_seq": 14, | |
"success": true, | |
"command": "configurationDone" | |
} | |
D+00000.736: /handling #14 request "configurationDone" from Client[1]/ | |
Client[1] <-- { | |
"seq": 17, | |
"type": "response", | |
"request_seq": 2, | |
"success": true, | |
"command": "launch" | |
} | |
D+00000.736: /handling #14 request "configurationDone" from Client[1]/ | |
Propagating deferred events to Client[1]... | |
D+00000.736: Server[1] --> { | |
"pydevd_cmd_id": 103, | |
"seq": 40, | |
"type": "event", | |
"event": "thread", | |
"body": { | |
"reason": "started", | |
"threadId": 1 | |
} | |
} | |
D+00000.736: /handling #14 request "configurationDone" from Client[1]/ | |
Propagating deferred #1 event "process" from Launcher[1] | |
D+00000.736: /handling #14 request "configurationDone" from Client[1]/ | |
Client[1] <-- { | |
"seq": 18, | |
"type": "event", | |
"event": "process", | |
"body": { | |
"startMethod": "launch", | |
"isLocalProcess": true, | |
"systemProcessId": 23343, | |
"name": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"pointerSize": 64 | |
} | |
} | |
I+00000.736: /handling #14 request "configurationDone" from Client[1]/ | |
All deferred events propagated to Client[1]. | |
D+00000.737: /handling #40 event "thread" from Server[1]/ | |
Client[1] <-- { | |
"seq": 19, | |
"type": "event", | |
"event": "thread", | |
"body": { | |
"reason": "started", | |
"threadId": 1 | |
} | |
} | |
D+00000.737: Client[1] --> { | |
"seq": 15, | |
"type": "request", | |
"command": "threads" | |
} | |
D+00000.738: /handling #15 request "threads" from Client[1]/ | |
Server[1] <-- { | |
"seq": 19, | |
"type": "request", | |
"command": "threads" | |
} | |
D+00000.738: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 42, | |
"type": "response", | |
"request_seq": 19, | |
"success": true, | |
"command": "threads", | |
"body": { | |
"threads": [ | |
{ | |
"id": 1, | |
"name": "MainThread" | |
} | |
] | |
} | |
} | |
D+00000.739: /handling #15 request "threads" from Client[1]/ | |
Client[1] <-- { | |
"seq": 20, | |
"type": "response", | |
"request_seq": 15, | |
"success": true, | |
"command": "threads", | |
"body": { | |
"threads": [ | |
{ | |
"id": 1, | |
"name": "MainThread" | |
} | |
] | |
} | |
} | |
D+00000.842: Client[1] --> { | |
"seq": 16, | |
"type": "request", | |
"command": "threads" | |
} | |
D+00000.842: /handling #16 request "threads" from Client[1]/ | |
Server[1] <-- { | |
"seq": 20, | |
"type": "request", | |
"command": "threads" | |
} | |
D+00000.844: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 44, | |
"type": "response", | |
"request_seq": 20, | |
"success": true, | |
"command": "threads", | |
"body": { | |
"threads": [ | |
{ | |
"id": 1, | |
"name": "MainThread" | |
} | |
] | |
} | |
} | |
D+00000.844: /handling #16 request "threads" from Client[1]/ | |
Client[1] <-- { | |
"seq": 21, | |
"type": "response", | |
"request_seq": 16, | |
"success": true, | |
"command": "threads", | |
"body": { | |
"threads": [ | |
{ | |
"id": 1, | |
"name": "MainThread" | |
} | |
] | |
} | |
} | |
D+00001.131: Server[1] --> { | |
"pydevd_cmd_id": 157, | |
"seq": 46, | |
"type": "event", | |
"event": "stopped", | |
"body": { | |
"reason": "breakpoint", | |
"threadId": 1, | |
"preserveFocusHint": false, | |
"allThreadsStopped": true | |
} | |
} | |
D+00001.131: /handling #46 event "stopped" from Server[1]/ | |
Client[1] <-- { | |
"seq": 22, | |
"type": "event", | |
"event": "stopped", | |
"body": { | |
"reason": "breakpoint", | |
"threadId": 1, | |
"preserveFocusHint": false, | |
"allThreadsStopped": true | |
} | |
} | |
D+00001.133: Client[1] --> { | |
"seq": 17, | |
"type": "request", | |
"command": "threads" | |
} | |
D+00001.133: /handling #17 request "threads" from Client[1]/ | |
Server[1] <-- { | |
"seq": 21, | |
"type": "request", | |
"command": "threads" | |
} | |
D+00001.134: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 48, | |
"type": "response", | |
"request_seq": 21, | |
"success": true, | |
"command": "threads", | |
"body": { | |
"threads": [ | |
{ | |
"id": 1, | |
"name": "MainThread" | |
} | |
] | |
} | |
} | |
D+00001.134: /handling #17 request "threads" from Client[1]/ | |
Client[1] <-- { | |
"seq": 23, | |
"type": "response", | |
"request_seq": 17, | |
"success": true, | |
"command": "threads", | |
"body": { | |
"threads": [ | |
{ | |
"id": 1, | |
"name": "MainThread" | |
} | |
] | |
} | |
} | |
D+00001.136: Client[1] --> { | |
"seq": 18, | |
"type": "request", | |
"command": "stackTrace", | |
"arguments": { | |
"threadId": 1, | |
"startFrame": 0, | |
"levels": 1 | |
} | |
} | |
D+00001.136: /handling #18 request "stackTrace" from Client[1]/ | |
Server[1] <-- { | |
"seq": 22, | |
"type": "request", | |
"command": "stackTrace", | |
"arguments": { | |
"threadId": 1, | |
"startFrame": 0, | |
"levels": 1 | |
} | |
} | |
D+00001.137: Server[1] --> { | |
"pydevd_cmd_id": 203, | |
"seq": 50, | |
"type": "event", | |
"event": "module", | |
"body": { | |
"reason": "new", | |
"module": { | |
"id": 0, | |
"name": "__main__", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py" | |
} | |
} | |
} | |
D+00001.137: Server[1] --> { | |
"pydevd_cmd_id": 203, | |
"seq": 52, | |
"type": "event", | |
"event": "module", | |
"body": { | |
"reason": "new", | |
"module": { | |
"id": 1, | |
"name": "runpy", | |
"path": "/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/runpy.py" | |
} | |
} | |
} | |
D+00001.137: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 54, | |
"type": "response", | |
"request_seq": 22, | |
"success": true, | |
"command": "stackTrace", | |
"body": { | |
"stackFrames": [ | |
{ | |
"id": 2, | |
"name": "<module>", | |
"line": 7, | |
"column": 1, | |
"source": { | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"sourceReference": 0 | |
} | |
} | |
], | |
"totalFrames": 1 | |
} | |
} | |
D+00001.138: /handling #18 request "stackTrace" from Client[1]/ | |
Client[1] <-- { | |
"seq": 24, | |
"type": "response", | |
"request_seq": 18, | |
"success": true, | |
"command": "stackTrace", | |
"body": { | |
"stackFrames": [ | |
{ | |
"id": 2, | |
"name": "<module>", | |
"line": 7, | |
"column": 1, | |
"source": { | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"sourceReference": 0 | |
} | |
} | |
], | |
"totalFrames": 1 | |
} | |
} | |
D+00001.138: /handling #50 event "module" from Server[1]/ | |
Client[1] <-- { | |
"seq": 25, | |
"type": "event", | |
"event": "module", | |
"body": { | |
"reason": "new", | |
"module": { | |
"id": 0, | |
"name": "__main__", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py" | |
} | |
} | |
} | |
D+00001.138: /handling #52 event "module" from Server[1]/ | |
Client[1] <-- { | |
"seq": 26, | |
"type": "event", | |
"event": "module", | |
"body": { | |
"reason": "new", | |
"module": { | |
"id": 1, | |
"name": "runpy", | |
"path": "/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/runpy.py" | |
} | |
} | |
} | |
D+00001.553: Client[1] --> { | |
"seq": 19, | |
"type": "request", | |
"command": "scopes", | |
"arguments": { | |
"frameId": 2 | |
} | |
} | |
D+00001.554: /handling #19 request "scopes" from Client[1]/ | |
Server[1] <-- { | |
"seq": 23, | |
"type": "request", | |
"command": "scopes", | |
"arguments": { | |
"frameId": 2 | |
} | |
} | |
D+00001.556: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 56, | |
"type": "response", | |
"request_seq": 23, | |
"success": true, | |
"command": "scopes", | |
"body": { | |
"scopes": [ | |
{ | |
"name": "Locals", | |
"variablesReference": 3, | |
"expensive": false, | |
"presentationHint": "locals", | |
"source": {} | |
}, | |
{ | |
"name": "Globals", | |
"variablesReference": 4, | |
"expensive": false, | |
"source": {} | |
} | |
] | |
} | |
} | |
D+00001.558: /handling #19 request "scopes" from Client[1]/ | |
Client[1] <-- { | |
"seq": 27, | |
"type": "response", | |
"request_seq": 19, | |
"success": true, | |
"command": "scopes", | |
"body": { | |
"scopes": [ | |
{ | |
"name": "Locals", | |
"variablesReference": 3, | |
"expensive": false, | |
"presentationHint": "locals", | |
"source": {} | |
}, | |
{ | |
"name": "Globals", | |
"variablesReference": 4, | |
"expensive": false, | |
"source": {} | |
} | |
] | |
} | |
} | |
D+00001.584: Client[1] --> { | |
"seq": 20, | |
"type": "request", | |
"command": "stackTrace", | |
"arguments": { | |
"threadId": 1, | |
"startFrame": 1, | |
"levels": 19 | |
} | |
} | |
D+00001.584: /handling #20 request "stackTrace" from Client[1]/ | |
Server[1] <-- { | |
"seq": 24, | |
"type": "request", | |
"command": "stackTrace", | |
"arguments": { | |
"threadId": 1, | |
"startFrame": 1, | |
"levels": 19 | |
} | |
} | |
D+00001.585: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 58, | |
"type": "response", | |
"request_seq": 24, | |
"success": true, | |
"command": "stackTrace", | |
"body": { | |
"stackFrames": [], | |
"totalFrames": 1 | |
} | |
} | |
D+00001.585: /handling #20 request "stackTrace" from Client[1]/ | |
Client[1] <-- { | |
"seq": 28, | |
"type": "response", | |
"request_seq": 20, | |
"success": true, | |
"command": "stackTrace", | |
"body": { | |
"stackFrames": [], | |
"totalFrames": 1 | |
} | |
} | |
D+00001.588: Client[1] --> { | |
"seq": 21, | |
"type": "request", | |
"command": "variables", | |
"arguments": { | |
"variablesReference": 3 | |
} | |
} | |
D+00001.589: /handling #21 request "variables" from Client[1]/ | |
Server[1] <-- { | |
"seq": 25, | |
"type": "request", | |
"command": "variables", | |
"arguments": { | |
"variablesReference": 3 | |
} | |
} | |
D+00001.592: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 60, | |
"type": "response", | |
"request_seq": 25, | |
"success": true, | |
"command": "variables", | |
"body": { | |
"variables": [ | |
{ | |
"name": "special variables", | |
"value": "", | |
"type": "", | |
"evaluateName": "special variables", | |
"variablesReference": 5 | |
}, | |
{ | |
"name": "function variables", | |
"value": "", | |
"type": "", | |
"evaluateName": "function variables", | |
"variablesReference": 6 | |
}, | |
{ | |
"name": "np", | |
"value": "<module 'numpy' from '/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/__init__.py'>", | |
"type": "module", | |
"evaluateName": "np", | |
"variablesReference": 7 | |
} | |
] | |
} | |
} | |
D+00001.592: /handling #21 request "variables" from Client[1]/ | |
Client[1] <-- { | |
"seq": 29, | |
"type": "response", | |
"request_seq": 21, | |
"success": true, | |
"command": "variables", | |
"body": { | |
"variables": [ | |
{ | |
"name": "special variables", | |
"value": "", | |
"type": "", | |
"evaluateName": "special variables", | |
"variablesReference": 5 | |
}, | |
{ | |
"name": "function variables", | |
"value": "", | |
"type": "", | |
"evaluateName": "function variables", | |
"variablesReference": 6 | |
}, | |
{ | |
"name": "np", | |
"value": "<module 'numpy' from '/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/__init__.py'>", | |
"type": "module", | |
"evaluateName": "np", | |
"variablesReference": 7 | |
} | |
] | |
} | |
} | |
D+00003.098: Client[1] --> { | |
"seq": 22, | |
"type": "request", | |
"command": "evaluate", | |
"arguments": { | |
"expression": "test_array = np.array(2)", | |
"frameId": 2, | |
"context": "repl" | |
} | |
} | |
D+00003.100: /handling #22 request "evaluate" from Client[1]/ | |
Server[1] <-- { | |
"seq": 26, | |
"type": "request", | |
"command": "evaluate", | |
"arguments": { | |
"expression": "test_array = np.array(2)", | |
"frameId": 2, | |
"context": "repl" | |
} | |
} | |
D+00003.106: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 62, | |
"type": "response", | |
"request_seq": 26, | |
"success": true, | |
"command": "evaluate", | |
"body": { | |
"result": "", | |
"variablesReference": 0, | |
"presentationHint": {} | |
} | |
} | |
D+00003.107: /handling #62 response to #26 request "evaluate" to Server[1]/ | |
Client[1] <-- { | |
"seq": 30, | |
"type": "response", | |
"request_seq": 22, | |
"success": true, | |
"command": "evaluate", | |
"body": { | |
"result": "", | |
"variablesReference": 0, | |
"presentationHint": {} | |
} | |
} | |
D+00003.112: Client[1] --> { | |
"seq": 23, | |
"type": "request", | |
"command": "scopes", | |
"arguments": { | |
"frameId": 2 | |
} | |
} | |
D+00003.114: /handling #23 request "scopes" from Client[1]/ | |
Server[1] <-- { | |
"seq": 27, | |
"type": "request", | |
"command": "scopes", | |
"arguments": { | |
"frameId": 2 | |
} | |
} | |
D+00003.156: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 64, | |
"type": "response", | |
"request_seq": 27, | |
"success": true, | |
"command": "scopes", | |
"body": { | |
"scopes": [ | |
{ | |
"name": "Locals", | |
"variablesReference": 3, | |
"expensive": false, | |
"presentationHint": "locals", | |
"source": {} | |
}, | |
{ | |
"name": "Globals", | |
"variablesReference": 4, | |
"expensive": false, | |
"source": {} | |
} | |
] | |
} | |
} | |
D+00003.157: /handling #23 request "scopes" from Client[1]/ | |
Client[1] <-- { | |
"seq": 31, | |
"type": "response", | |
"request_seq": 23, | |
"success": true, | |
"command": "scopes", | |
"body": { | |
"scopes": [ | |
{ | |
"name": "Locals", | |
"variablesReference": 3, | |
"expensive": false, | |
"presentationHint": "locals", | |
"source": {} | |
}, | |
{ | |
"name": "Globals", | |
"variablesReference": 4, | |
"expensive": false, | |
"source": {} | |
} | |
] | |
} | |
} | |
D+00003.161: Client[1] --> { | |
"seq": 24, | |
"type": "request", | |
"command": "variables", | |
"arguments": { | |
"variablesReference": 3 | |
} | |
} | |
D+00003.162: /handling #24 request "variables" from Client[1]/ | |
Server[1] <-- { | |
"seq": 28, | |
"type": "request", | |
"command": "variables", | |
"arguments": { | |
"variablesReference": 3 | |
} | |
} | |
D+00003.168: Server[1] --> { | |
"pydevd_cmd_id": 502, | |
"seq": 66, | |
"type": "response", | |
"request_seq": 28, | |
"success": true, | |
"command": "variables", | |
"body": { | |
"variables": [ | |
{ | |
"name": "special variables", | |
"value": "", | |
"type": "", | |
"evaluateName": "special variables", | |
"variablesReference": 8 | |
}, | |
{ | |
"name": "function variables", | |
"value": "", | |
"type": "", | |
"evaluateName": "function variables", | |
"variablesReference": 9 | |
}, | |
{ | |
"name": "np", | |
"value": "<module 'numpy' from '/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/__init__.py'>", | |
"type": "module", | |
"evaluateName": "np", | |
"variablesReference": 7 | |
}, | |
{ | |
"name": "test_array", | |
"value": "array(2)", | |
"type": "ndarray", | |
"evaluateName": "test_array", | |
"variablesReference": 10 | |
} | |
] | |
} | |
} | |
D+00003.169: /handling #24 request "variables" from Client[1]/ | |
Client[1] <-- { | |
"seq": 32, | |
"type": "response", | |
"request_seq": 24, | |
"success": true, | |
"command": "variables", | |
"body": { | |
"variables": [ | |
{ | |
"name": "special variables", | |
"value": "", | |
"type": "", | |
"evaluateName": "special variables", | |
"variablesReference": 8 | |
}, | |
{ | |
"name": "function variables", | |
"value": "", | |
"type": "", | |
"evaluateName": "function variables", | |
"variablesReference": 9 | |
}, | |
{ | |
"name": "np", | |
"value": "<module 'numpy' from '/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/__init__.py'>", | |
"type": "module", | |
"evaluateName": "np", | |
"variablesReference": 7 | |
}, | |
{ | |
"name": "test_array", | |
"value": "array(2)", | |
"type": "ndarray", | |
"evaluateName": "test_array", | |
"variablesReference": 10 | |
} | |
] | |
} | |
} | |
D+00004.432: Client[1] --> { | |
"seq": 25, | |
"type": "request", | |
"command": "variables", | |
"arguments": { | |
"variablesReference": 10 | |
} | |
} | |
D+00004.433: /handling #25 request "variables" from Client[1]/ | |
Server[1] <-- { | |
"seq": 29, | |
"type": "request", | |
"command": "variables", | |
"arguments": { | |
"variablesReference": 10 | |
} | |
} | |
D+00004.446: Server[1] --> { | |
"pydevd_cmd_id": 158, | |
"seq": 68, | |
"type": "event", | |
"event": "continued", | |
"body": { | |
"threadId": 1, | |
"allThreadsContinued": true | |
} | |
} | |
D+00004.641: Server[1] --> { | |
"pydevd_cmd_id": 104, | |
"seq": 70, | |
"type": "event", | |
"event": "thread", | |
"body": { | |
"reason": "exited", | |
"threadId": 1 | |
} | |
} | |
D+00004.641: Server[1] --> { | |
"pydevd_cmd_id": 129, | |
"seq": 72, | |
"type": "event", | |
"event": "terminated", | |
"body": {} | |
} | |
D+00005.215: Exiting message loop for channel Server[1]: No more messages | |
D+00005.215: Closing Server[1] message stream | |
D+00005.216: /handling #25 request "variables" from Client[1]/ | |
Client[1] <-- { | |
"seq": 33, | |
"type": "response", | |
"request_seq": 25, | |
"success": false, | |
"command": "variables", | |
"message": "Server[1] disconnected unexpectedly" | |
} | |
D+00005.216: Launcher[1] --> { | |
"seq": 3, | |
"type": "event", | |
"event": "exited", | |
"body": { | |
"exitCode": 1 | |
} | |
} | |
D+00005.216: /handling #68 event "continued" from Server[1]/ | |
Client[1] <-- { | |
"seq": 34, | |
"type": "event", | |
"event": "continued", | |
"body": { | |
"threadId": 1, | |
"allThreadsContinued": true | |
} | |
} | |
D+00005.216: Launcher[1] --> { | |
"seq": 4, | |
"type": "event", | |
"event": "terminated" | |
} | |
E+00005.221: /handling #25 request "variables" from Client[1]/ | |
Handler 'Client.request' (file '/home/ricks/Development/dev_tools/debugpy/src/debugpy/adapter/../../debugpy/adapter/components.py', line 128) | |
couldn't handle #25 request "variables" from Client[1]: | |
Server[1] disconnected unexpectedly | |
D+00005.222: /handling #70 event "thread" from Server[1]/ | |
Client[1] <-- { | |
"seq": 35, | |
"type": "event", | |
"event": "thread", | |
"body": { | |
"reason": "exited", | |
"threadId": 1 | |
} | |
} | |
D+00005.222: /handling #4 event "terminated" from Launcher[1]/ | |
Client[1] <-- { | |
"seq": 36, | |
"type": "event", | |
"event": "exited", | |
"body": { | |
"exitCode": 1 | |
} | |
} | |
D+00005.222: /handling #4 event "terminated" from Launcher[1]/ | |
Closing Launcher[1] message stream | |
I+00005.222: /handling disconnect from Server[1]/ | |
Server[1] has disconnected; finalizing Session[1]. | |
D+00005.222: Exiting message loop for channel Launcher[1]: No more messages | |
I+00005.222: All debug servers disconnected; waiting for remaining sessions... | |
I+00005.222: /handling disconnect from Server[1]/ | |
Session[1] waiting for "exited" event... | |
I+00005.223: /handling disconnect from Server[1]/ | |
Session[1] waiting for Launcher[1] to disconnect... | |
D+00005.223: /handling disconnect from Server[1]/ | |
Client[1] <-- { | |
"seq": 37, | |
"type": "event", | |
"event": "terminated" | |
} | |
I+00005.223: /handling disconnect from Server[1]/ | |
"launch" session ended - killing remaining debuggee processes. | |
I+00005.223: /handling disconnect from Server[1]/ | |
Session[1] finalized. | |
D+00005.226: Client[1] --> { | |
"seq": 26, | |
"type": "request", | |
"command": "disconnect", | |
"arguments": { | |
"restart": false | |
} | |
} | |
D+00005.226: /handling #26 request "disconnect" from Client[1]/ | |
Client[1] <-- { | |
"seq": 38, | |
"type": "response", | |
"request_seq": 26, | |
"success": true, | |
"command": "disconnect" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I+00000.010: Linux-5.4.26-050426-generic-x86_64-with-debian-buster-sid x86_64 | |
CPython 3.7.7 (64-bit) | |
debugpy 1.0.0rc2 | |
I+00000.013: debugpy.launcher startup environment: | |
System paths: | |
sys.prefix: /home/ricks/miniconda3/envs/machine_learning_control | |
sys.base_prefix: /home/ricks/miniconda3/envs/machine_learning_control | |
sys.real_prefix: <missing> | |
site.getsitepackages(): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages | |
site.getusersitepackages(): /home/ricks/.local/lib/python3.7/site-packages | |
sys.path (site-packages): /home/ricks/.local/lib/python3.7/site-packages | |
/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages | |
sysconfig.get_path('stdlib'): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7 | |
sysconfig.get_path('platstdlib'): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7 | |
sysconfig.get_path('purelib'): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages | |
sysconfig.get_path('platlib'): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages | |
sysconfig.get_path('include'): /home/ricks/miniconda3/envs/machine_learning_control/include/python3.7m | |
sysconfig.get_path('scripts'): /home/ricks/miniconda3/envs/machine_learning_control/bin | |
sysconfig.get_path('data'): /home/ricks/miniconda3/envs/machine_learning_control | |
os.__file__: /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/os.py | |
threading.__file__: /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/threading.py | |
I+00000.013: sys.argv before parsing: ['/home/ricks/Development/dev_tools/debugpy/src/debugpy/launcher', '36159', '--', '/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py'] | |
I+00000.013: sys.argv after patching: ['/home/ricks/Development/dev_tools/debugpy/src/debugpy/launcher', '/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py'] | |
I+00000.013: Connecting to adapter at 127.0.0.1:36159 | |
D+00000.014: Starting message loop for channel Adapter | |
D+00000.015: Adapter --> { | |
"seq": 1, | |
"type": "request", | |
"command": "launch", | |
"arguments": { | |
"name": "Python: Current File", | |
"type": "python", | |
"request": "launch", | |
"program": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"console": "integratedTerminal", | |
"logToFile": true, | |
"env": { | |
"PYDEVD_THREAD_DUMP_ON_WARN_EVALUATION_TIMEOUT": "true", | |
"PYTHONIOENCODING": "UTF-8", | |
"PYTHONUNBUFFERED": "1" | |
}, | |
"debugAdapterPath": "/home/ricks/Development/dev_tools/debugpy/src/debugpy/adapter", | |
"pythonPath": "/home/ricks/miniconda3/envs/machine_learning_control/bin/python", | |
"cwd": "/home/ricks/Development/machine_learning_control_ws/src", | |
"envFile": "/home/ricks/Development/machine_learning_control_ws/src/.env", | |
"stopOnEntry": false, | |
"showReturnValue": true, | |
"internalConsoleOptions": "neverOpen", | |
"debugOptions": [ | |
"ShowReturnValue" | |
], | |
"justMyCode": true, | |
"workspaceFolder": "/home/ricks/Development/machine_learning_control_ws/src", | |
"__sessionId": "d72d0e4c-49fd-47a8-9ef7-4b531ab69249", | |
"pythonArgs": [], | |
"processName": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"port": 46227, | |
"adapterAccessToken": "ba55f8203b5c007ff6de9e982b467900790dbaf36d23016aa4888c9963090226" | |
} | |
} | |
I+00000.015: /handling #1 request "launch" from Adapter/ | |
Spawning debuggee process: | |
Command line: ['/home/ricks/miniconda3/envs/machine_learning_control/bin/python', '/home/ricks/Development/dev_tools/debugpy/src/debugpy', '--connect', '127.0.0.1:46227', '--configure-qt', 'auto', '--adapter-access-token', 'ba55f8203b5c007ff6de9e982b467900790dbaf36d23016aa4888c9963090226', '/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py'] | |
Environment variables: {'CONDA_SHLVL': '2', 'LC_ALL': 'C.UTF-8', 'NVM_DIR': '/home/ricks/.nvm', 'LD_LIBRARY_PATH': '/opt/ros/melodic/lib:/home/ricks/.mujoco/mujoco200/bin:/home/ricks/.mujoco/mjpro150/bin', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:', 'CONDA_EXE': '/home/ricks/miniconda3/bin/conda', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'LANG': 'C.UTF-8', 'OLDPWD': '/home/ricks/Development/machine_learning_control_ws/src', 'INVOCATION_ID': '2755250af0704a429deb3af7fe89f7d0', 'EDITOR': 'vim', 'DEBFULLNAME': 'Rick Staa', 'ROS_ETC_DIR': '/opt/ros/melodic/etc/ros', 'COLORTERM': 'truecolor', 'NVM_CD_FLAGS': '', 'CONDA_PREFIX': '/home/ricks/miniconda3/envs/machine_learning_control', 'NOTIFY_SOCKET': '/run/systemd/notify', '_CE_M': '', 'USER': 'ricks', 'CONDA_PREFIX_1': '/home/ricks/miniconda3', 'RBENV_SHELL': 'bash', 'PWD': '/home/ricks/Development/machine_learning_control_ws/src', 'HOME': '/home/ricks', 'CONDA_PYTHON_EXE': '/home/ricks/miniconda3/bin/python', 'JOURNAL_STREAM': '9:51937', 'VSCODE_GIT_ASKPASS_NODE': '/snap/code-insiders/504/usr/share/code-insiders/code-insiders', 'CMAKE_PREFIX_PATH': '/opt/ros/melodic', 'TERM_PROGRAM': 'vscode', 'TERM_PROGRAM_VERSION': '1.49.0-insider', '_CE_CONDA': '', 'ROS_ROOT': '/opt/ros/melodic/share/ros', 'ROS_MASTER_URI': 'http://localhost:11311', 'LC_NUMERIC': 'en_US.UTF-8', 'CONDA_PROMPT_MODIFIER': '(machine_learning_control) ', 'ROS_VERSION': '1', 'VSCODE_GIT_ASKPASS_MAIN': '/snap/code-insiders/504/usr/share/code-insiders/resources/app/extensions/git/dist/askpass-main.js', 'VISUAL': 'vim', 'TERM': 'xterm-256color', 'SHELL': '/bin/bash', 'ROS_PYTHON_VERSION': '2', 'NVM_BIN': '/home/ricks/.nvm/versions/node/v14.2.0/bin', 'SHLVL': '1', 'PYTHONPATH': '/opt/ros/melodic/lib/python2.7/dist-packages', 'VSCODE_GIT_IPC_HANDLE': '/run/user/1000/snap.code-insiders/vscode-git-dc4e19eade.sock', 'ROS_PACKAGE_PATH': '/opt/ros/melodic/share', 'DEBEMAIL': '[email protected]', 'ROSLISP_PACKAGE_DIRECTORIES': '', 'LOGNAME': 'ricks', 'GIT_ASKPASS': '/snap/code-insiders/504/usr/share/code-insiders/resources/app/extensions/git/dist/askpass.sh', 'XDG_RUNTIME_DIR': '/run/user/1000', 'PATH': '/home/ricks/miniconda3/envs/machine_learning_control/bin:/home/ricks/.rbenv/shims:/home/ricks/.rbenv/bin:/home/ricks/miniconda3/condabin:/home/ricks/.nvm/versions/node/v14.2.0/bin:/usr/local/go/bin:/usr/lib/ccache:/opt/ros/melodic/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin', 'PS1': '(machine_learning_control) [\\t] \\[\\e[1;32m\\]\\u\\[\\e[m\\]\\[\\e[32m\\]@\\[\\e[m\\]\\[\\e[1;32m\\]\\h\\[\\e[m\\]:\\[\\e[1;36m\\]\\w\\[\\e[m\\]$ ', 'CONDA_DEFAULT_ENV': 'machine_learning_control', 'PKG_CONFIG_PATH': '/opt/ros/melodic/lib/pkgconfig', 'NVM_INC': '/home/ricks/.nvm/versions/node/v14.2.0/include/node', 'LD_PRELOAD': '/usr/lib/x86_64-linux-gnu/libGLEW.so', 'ROS_HOSTNAME': 'localhost', 'ROS_DISTRO': 'melodic', 'LESSOPEN': '| /usr/bin/lesspipe %s', '_': '/usr/bin/env', 'DEBUGPY_LOG_DIR': '/home/ricks/.vscode-insiders/extensions/ms-python.python-2020.8.101144', 'PYDEVD_THREAD_DUMP_ON_WARN_EVALUATION_TIMEOUT': 'true', 'PYTHONIOENCODING': 'UTF-8', 'PYTHONUNBUFFERED': '1'} | |
I+00000.017: /handling #1 request "launch" from Adapter/ | |
Spawned Debuggee[PID=23343]. | |
D+00000.017: /handling #1 request "launch" from Adapter/ | |
Adapter <-- { | |
"seq": 1, | |
"type": "event", | |
"event": "process", | |
"body": { | |
"startMethod": "launch", | |
"isLocalProcess": true, | |
"systemProcessId": 23343, | |
"name": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"pointerSize": 64 | |
} | |
} | |
D+00000.017: /handling #1 request "launch" from Adapter/ | |
Adapter <-- { | |
"seq": 2, | |
"type": "response", | |
"request_seq": 1, | |
"success": true, | |
"command": "launch" | |
} | |
I+00005.074: Debuggee[PID=23343] exited with code 1 | |
D+00005.074: Adapter <-- { | |
"seq": 3, | |
"type": "event", | |
"event": "exited", | |
"body": { | |
"exitCode": 1 | |
} | |
} | |
D+00005.074: Adapter <-- { | |
"seq": 4, | |
"type": "event", | |
"event": "terminated" | |
} | |
D+00005.080: Exiting message loop for channel Adapter: No more messages | |
D+00005.081: Closing Adapter message stream |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Using GEVENT_SUPPORT: False | |
pydevd __file__: /home/ricks/Development/dev_tools/debugpy/src/debugpy/_vendored/pydevd/pydevd.py | |
pydevd: Use libraries filter: False | |
IDE_PROJECT_ROOTS [] | |
Collecting default library roots. | |
LIBRARY_ROOTS ['/home/ricks/.local/lib/python3.7/site-packages', '/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7', '/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages'] | |
Connecting to 127.0.0.1:46227 | |
Connected. | |
Process PydevdAuthorizeRequest: { | |
"arguments": {}, | |
"command": "pydevdAuthorize", | |
"seq": 1, | |
"type": "request" | |
} | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 1, "success": true, "command": "pydevdAuthorize", "body": {"clientAccessToken": "ba55f8203b5c007ff6de9e982b467900790dbaf36d23016aa4888c9963090226"}, "seq": 2, "pydevd_cmd_id": 502} | |
Process PydevdSystemInfoRequest: { | |
"arguments": {}, | |
"command": "pydevdSystemInfo", | |
"seq": 2, | |
"type": "request" | |
} | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 2, "success": true, "command": "pydevdSystemInfo", "body": {"python": {"version": "3.7.7final0", "implementation": {"name": "cpython", "version": "3.7.7final0", "description": "CPython"}}, "platform": {"name": "linux"}, "process": {"pid": 23343, "ppid": 23333, "executable": "/home/ricks/miniconda3/envs/machine_learning_control/bin/python", "bitness": 64}, "pydevd": {"usingCython": false, "usingFrameEval": false}}, "seq": 4, "pydevd_cmd_id": 502} | |
Process EvaluateRequest: { | |
"arguments": { | |
"expression": "\nif 'debugpy' not in sys.modules:\n sys.path.insert(0, '/home/ricks/Development/dev_tools/debugpy/src')\n try:\n import debugpy\n finally:\n del sys.path[0]\n", | |
"format": {} | |
}, | |
"command": "evaluate", | |
"seq": 3, | |
"type": "request" | |
} | |
processing internal command: InternalThreadCommands(<function internal_evaluate_expression_json at 0x7f2b3c8f9ef0>, (<_pydevd_bundle._debug_adapter.pydevd_schema.EvaluateRequest object at 0x7f2b39db8130>, '*'), {}) | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 3, "success": true, "command": "evaluate", "body": {"result": "", "variablesReference": 0, "presentationHint": {}}, "seq": 6, "pydevd_cmd_id": 502} | |
Process PydevdAuthorizeRequest: { | |
"arguments": {}, | |
"command": "pydevdAuthorize", | |
"seq": 4, | |
"type": "request" | |
} | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 4, "success": true, "command": "pydevdAuthorize", "body": {"clientAccessToken": "ba55f8203b5c007ff6de9e982b467900790dbaf36d23016aa4888c9963090226"}, "seq": 8, "pydevd_cmd_id": 502} | |
Process InitializeRequest: { | |
"arguments": { | |
"adapterID": "python", | |
"clientID": "vscode", | |
"clientName": "Visual Studio Code - Insiders", | |
"columnsStartAt1": true, | |
"linesStartAt1": true, | |
"locale": "en", | |
"pathFormat": "path", | |
"supportsProgressReporting": true, | |
"supportsRunInTerminalRequest": true, | |
"supportsVariablePaging": true, | |
"supportsVariableType": true | |
}, | |
"command": "initialize", | |
"seq": 5, | |
"type": "request" | |
} | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 5, "success": true, "command": "initialize", "seq": 10, "body": {"supportsConfigurationDoneRequest": true, "supportsFunctionBreakpoints": false, "supportsConditionalBreakpoints": true, "supportsHitConditionalBreakpoints": true, "supportsEvaluateForHovers": true, "exceptionBreakpointFilters": [{"filter": "raised", "label": "Raised Exceptions", "default": false}, {"filter": "uncaught", "label": "Uncaught Exceptions", "default": true}, {"filter": "userUnhandled", "label": "User Uncaught Exceptions", "default": false}], "supportsStepBack": false, "supportsSetVariable": true, "supportsRestartFrame": false, "supportsGotoTargetsRequest": true, "supportsStepInTargetsRequest": false, "supportsCompletionsRequest": true, "completionTriggerCharacters": [], "supportsModulesRequest": true, "additionalModuleColumns": [], "supportedChecksumAlgorithms": [], "supportsRestartRequest": false, "supportsExceptionOptions": true, "supportsValueFormattingOptions": true, "supportsExceptionInfoRequest": true, "supportTerminateDebuggee": true, "supportsDelayedStackTraceLoading": true, "supportsLoadedSourcesRequest": false, "supportsLogPoints": true, "supportsTerminateThreadsRequest": false, "supportsSetExpression": true, "supportsTerminateRequest": true, "supportsDataBreakpoints": false, "supportsReadMemoryRequest": false, "supportsDisassembleRequest": false, "supportsDebuggerProperties": true, "pydevd": {"processId": 23343}}, "pydevd_cmd_id": 502} | |
Process LaunchRequest: { | |
"arguments": { | |
"__sessionId": "d72d0e4c-49fd-47a8-9ef7-4b531ab69249", | |
"console": "integratedTerminal", | |
"cwd": "/home/ricks/Development/machine_learning_control_ws/src", | |
"debugAdapterPath": "/home/ricks/Development/dev_tools/debugpy/src/debugpy/adapter", | |
"debugOptions": [ | |
"ShowReturnValue" | |
], | |
"env": { | |
"PYDEVD_THREAD_DUMP_ON_WARN_EVALUATION_TIMEOUT": "true", | |
"PYTHONIOENCODING": "UTF-8", | |
"PYTHONUNBUFFERED": "1" | |
}, | |
"envFile": "/home/ricks/Development/machine_learning_control_ws/src/.env", | |
"internalConsoleOptions": "neverOpen", | |
"justMyCode": true, | |
"logToFile": true, | |
"name": "Python: Current File", | |
"processName": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"program": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", | |
"pythonArgs": [], | |
"pythonPath": "/home/ricks/miniconda3/envs/machine_learning_control/bin/python", | |
"request": "launch", | |
"showReturnValue": true, | |
"stopOnEntry": false, | |
"type": "python", | |
"workspaceFolder": "/home/ricks/Development/machine_learning_control_ws/src" | |
}, | |
"command": "launch", | |
"seq": 6, | |
"type": "request" | |
} | |
sending cmd --> CMD_PROCESS_EVENT {"type": "event", "event": "process", "body": {"name": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", "systemProcessId": 23343, "isLocalProcess": true, "startMethod": "launch"}, "seq": 12, "pydevd_cmd_id": 204} | |
pydevd: Use libraries filter: True | |
Show return values: True | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 6, "success": true, "command": "launch", "seq": 14, "pydevd_cmd_id": 502} | |
Process SetDebuggerPropertyRequest: { | |
"arguments": { | |
"ideOS": "UNIX", | |
"multiThreadsSingleNotification": true, | |
"skipPrintBreakpointException": [ | |
"NameError" | |
], | |
"skipSuspendOnBreakpointException": [ | |
"BaseException" | |
] | |
}, | |
"command": "setDebuggerProperty", | |
"seq": 7, | |
"type": "request" | |
} | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 7, "success": true, "command": "setDebuggerProperty", "seq": 16, "body": {}, "pydevd_cmd_id": 502} | |
Process SetBreakpointsRequest: { | |
"arguments": { | |
"breakpoints": [ | |
{ | |
"line": 2 | |
} | |
], | |
"lines": [ | |
2 | |
], | |
"source": { | |
"name": "__init__.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/oscillator/__init__.py" | |
}, | |
"sourceModified": false | |
}, | |
"command": "setBreakpoints", | |
"seq": 8, | |
"type": "request" | |
} | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/oscillator/__init__.py line: 2 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/oscillator/__init__.py line: 2 | |
File traced: /home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/oscillator/__init__.py | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/oscillator/__init__.py - line:1 - func_name:None | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 8, "success": true, "command": "setBreakpoints", "body": {"breakpoints": [{"verified": true, "id": 0, "source": {"name": "__init__.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/oscillator/__init__.py"}, "line": 1}]}, "seq": 18, "pydevd_cmd_id": 502} | |
Process SetBreakpointsRequest: { | |
"arguments": { | |
"breakpoints": [ | |
{ | |
"line": 9 | |
}, | |
{ | |
"line": 14 | |
} | |
], | |
"lines": [ | |
9, | |
14 | |
], | |
"source": { | |
"name": "__init__.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py" | |
}, | |
"sourceModified": false | |
}, | |
"command": "setBreakpoints", | |
"seq": 9, | |
"type": "request" | |
} | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py line: 9 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py line: 9 | |
File traced: /home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py - line:8 - func_name:None | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py line: 14 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py line: 14 | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py - line:11 - func_name:None | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 9, "success": true, "command": "setBreakpoints", "body": {"breakpoints": [{"verified": true, "id": 1, "source": {"name": "__init__.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py"}, "line": 8}, {"verified": true, "id": 2, "source": {"name": "__init__.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/simzoo/simzoo/envs/__init__.py"}, "line": 11}]}, "seq": 20, "pydevd_cmd_id": 502} | |
Process SetBreakpointsRequest: { | |
"arguments": { | |
"breakpoints": [ | |
{ | |
"line": 16 | |
}, | |
{ | |
"line": 24 | |
}, | |
{ | |
"line": 26 | |
}, | |
{ | |
"line": 31 | |
}, | |
{ | |
"line": 40 | |
}, | |
{ | |
"line": 47 | |
}, | |
{ | |
"line": 72 | |
}, | |
{ | |
"line": 74 | |
}, | |
{ | |
"line": 83 | |
}, | |
{ | |
"line": 86 | |
}, | |
{ | |
"line": 102 | |
}, | |
{ | |
"line": 116 | |
} | |
], | |
"lines": [ | |
16, | |
24, | |
26, | |
31, | |
40, | |
47, | |
72, | |
74, | |
83, | |
86, | |
102, | |
116 | |
], | |
"source": { | |
"name": "core.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py" | |
}, | |
"sourceModified": false | |
}, | |
"command": "setBreakpoints", | |
"seq": 10, | |
"type": "request" | |
} | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 16 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 16 | |
File traced: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py - line:16 - func_name:None | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 24 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 24 | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py - line:24 - func_name:None | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 26 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 26 | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py - line:26 - func_name:None | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 31 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 31 | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py - line:31 - func_name:None | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 40 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 40 | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py - line:40 - func_name:None | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 47 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 47 | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py - line:47 - func_name:None | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 72 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 72 | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py - line:72 - func_name:None | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 74 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 74 | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py - line:74 - func_name:None | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 83 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 83 | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py - line:83 - func_name:None | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 86 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 86 | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py - line:86 - func_name:None | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 102 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 102 | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py - line:102 - func_name:None | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 116 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py line: 116 | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py - line:116 - func_name:None | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 10, "success": true, "command": "setBreakpoints", "body": {"breakpoints": [{"verified": true, "id": 3, "source": {"name": "core.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py"}, "line": 16}, {"verified": true, "id": 4, "source": {"name": "core.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py"}, "line": 24}, {"verified": true, "id": 5, "source": {"name": "core.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py"}, "line": 26}, {"verified": true, "id": 6, "source": {"name": "core.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py"}, "line": 31}, {"verified": true, "id": 7, "source": {"name": "core.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py"}, "line": 40}, {"verified": true, "id": 8, "source": {"name": "core.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py"}, "line": 47}, {"verified": true, "id": 9, "source": {"name": "core.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py"}, "line": 72}, {"verified": true, "id": 10, "source": {"name": "core.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py"}, "line": 74}, {"verified": true, "id": 11, "source": {"name": "core.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py"}, "line": 83}, {"verified": true, "id": 12, "source": {"name": "core.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py"}, "line": 86}, {"verified": true, "id": 13, "source": {"name": "core.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py"}, "line": 102}, {"verified": true, "id": 14, "source": {"name": "core.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac/sac/core.py"}, "line": 116}]}, "seq": 22, "pydevd_cmd_id": 502} | |
Process SetBreakpointsRequest: { | |
"arguments": { | |
"breakpoints": [ | |
{ | |
"condition": "len(self.buffer) >= self.capacity", | |
"line": 54 | |
}, | |
{ | |
"line": 333 | |
} | |
], | |
"lines": [ | |
54, | |
333 | |
], | |
"source": { | |
"name": "sac.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac2/sac.py" | |
}, | |
"sourceModified": false | |
}, | |
"command": "setBreakpoints", | |
"seq": 11, | |
"type": "request" | |
} | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac2/sac.py line: 54 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac2/sac.py line: 54 | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac2/sac.py line: 333 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac2/sac.py line: 333 | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 11, "success": true, "command": "setBreakpoints", "body": {"breakpoints": [{"verified": false, "message": "Breakpoint in file that does not exist.", "source": {"name": "sac.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac2/sac.py"}, "line": 54}, {"verified": false, "message": "Breakpoint in file that does not exist.", "source": {"name": "sac.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/algos/sac2/sac.py"}, "line": 333}]}, "seq": 24, "pydevd_cmd_id": 502} | |
Process SetBreakpointsRequest: { | |
"arguments": { | |
"breakpoints": [ | |
{ | |
"line": 424 | |
} | |
], | |
"lines": [ | |
424 | |
], | |
"source": { | |
"name": "sac.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/control/algos/sac/sac.py" | |
}, | |
"sourceModified": false | |
}, | |
"command": "setBreakpoints", | |
"seq": 12, | |
"type": "request" | |
} | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/control/algos/sac/sac.py line: 424 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/control/algos/sac/sac.py line: 424 | |
File traced: /home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/control/algos/sac/sac.py | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/control/algos/sac/sac.py - line:422 - func_name:None | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 12, "success": true, "command": "setBreakpoints", "body": {"breakpoints": [{"verified": true, "id": 15, "source": {"name": "sac.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/machine_learning_control/control/algos/sac/sac.py"}, "line": 422}]}, "seq": 26, "pydevd_cmd_id": 502} | |
Process SetBreakpointsRequest: { | |
"arguments": { | |
"breakpoints": [ | |
{ | |
"line": 13 | |
}, | |
{ | |
"line": 67 | |
} | |
], | |
"lines": [ | |
13, | |
67 | |
], | |
"source": { | |
"name": "setup.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/setup.py" | |
}, | |
"sourceModified": false | |
}, | |
"command": "setBreakpoints", | |
"seq": 13, | |
"type": "request" | |
} | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/setup.py line: 13 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/setup.py line: 13 | |
File traced: /home/ricks/Development/machine_learning_control_ws/src/setup.py | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/setup.py - line:13 - func_name:None | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/setup.py line: 67 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/setup.py line: 67 | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/setup.py - line:67 - func_name:None | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 13, "success": true, "command": "setBreakpoints", "body": {"breakpoints": [{"verified": true, "id": 16, "source": {"name": "setup.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/setup.py"}, "line": 13}, {"verified": true, "id": 17, "source": {"name": "setup.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/setup.py"}, "line": 67}]}, "seq": 28, "pydevd_cmd_id": 502} | |
Process SetBreakpointsRequest: { | |
"arguments": { | |
"breakpoints": [ | |
{ | |
"line": 7 | |
}, | |
{ | |
"line": 8 | |
} | |
], | |
"lines": [ | |
7, | |
8 | |
], | |
"source": { | |
"name": "test_debugger.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py" | |
}, | |
"sourceModified": false | |
}, | |
"command": "setBreakpoints", | |
"seq": 14, | |
"type": "request" | |
} | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py line: 7 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py line: 7 | |
File traced: /home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py - line:7 - func_name:None | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py line: 8 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py line: 8 | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py - line:8 - func_name:None | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 14, "success": true, "command": "setBreakpoints", "body": {"breakpoints": [{"verified": true, "id": 18, "source": {"name": "test_debugger.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py"}, "line": 7}, {"verified": true, "id": 19, "source": {"name": "test_debugger.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py"}, "line": 8}]}, "seq": 30, "pydevd_cmd_id": 502} | |
Process SetBreakpointsRequest: { | |
"arguments": { | |
"breakpoints": [ | |
{ | |
"line": 16 | |
} | |
], | |
"lines": [ | |
16 | |
], | |
"source": { | |
"name": "test_gym_registration.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_gym_registration.py" | |
}, | |
"sourceModified": false | |
}, | |
"command": "setBreakpoints", | |
"seq": 15, | |
"type": "request" | |
} | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/test_gym_registration.py line: 16 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/test_gym_registration.py line: 16 | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 15, "success": true, "command": "setBreakpoints", "body": {"breakpoints": [{"verified": false, "message": "Breakpoint in file that does not exist.", "source": {"name": "test_gym_registration.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_gym_registration.py"}, "line": 16}]}, "seq": 32, "pydevd_cmd_id": 502} | |
Process SetBreakpointsRequest: { | |
"arguments": { | |
"breakpoints": [ | |
{ | |
"line": 8 | |
} | |
], | |
"lines": [ | |
8 | |
], | |
"source": { | |
"name": "test_is_scalar.py", | |
"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_is_scalar.py" | |
}, | |
"sourceModified": false | |
}, | |
"command": "setBreakpoints", | |
"seq": 16, | |
"type": "request" | |
} | |
Request for breakpoint in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/test_is_scalar.py line: 8 | |
Breakpoint (after path/source mapping) in: /home/ricks/Development/machine_learning_control_ws/src/sandbox/test_is_scalar.py line: 8 | |
File traced: /home/ricks/Development/machine_learning_control_ws/src/sandbox/test_is_scalar.py | |
Added breakpoint:/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_is_scalar.py - line:8 - func_name:None | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 16, "success": true, "command": "setBreakpoints", "body": {"breakpoints": [{"verified": true, "id": 20, "source": {"name": "test_is_scalar.py", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_is_scalar.py"}, "line": 8}]}, "seq": 34, "pydevd_cmd_id": 502} | |
Process SetExceptionBreakpointsRequest: { | |
"arguments": { | |
"filters": [ | |
"uncaught" | |
] | |
}, | |
"command": "setExceptionBreakpoints", | |
"seq": 17, | |
"type": "request" | |
} | |
Exceptions to hook on terminate: {'BaseException': <_pydevd_bundle.pydevd_breakpoints.ExceptionBreakpoint object at 0x7f2b38d61350>}. | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 17, "success": true, "command": "setExceptionBreakpoints", "seq": 36, "pydevd_cmd_id": 502} | |
Process ConfigurationDoneRequest: { | |
"arguments": {}, | |
"command": "configurationDone", | |
"seq": 18, | |
"type": "request" | |
} | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 18, "success": true, "command": "configurationDone", "seq": 38, "pydevd_cmd_id": 502} | |
sending cmd --> CMD_THREAD_CREATE {"type": "event", "event": "thread", "body": {"reason": "started", "threadId": 1}, "seq": 40, "pydevd_cmd_id": 103} | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/posixpath.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/genericpath.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/ctypes/__init__.py | |
Successfully Loaded helper lib to set tracing to all threads. | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/_vendored/pydevd/pydevd.py - set_tracing_for_untraced_contexts | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/_vendored/pydevd/pydevd.py - _locked_settrace | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/_vendored/pydevd/pydevd.py - settrace | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/server/api.py - _settrace | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/server/api.py - connect | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/server/api.py - debug | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/__init__.py - connect | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/common/compat.py - kwonly_f | |
Process ThreadsRequest: { | |
"command": "threads", | |
"seq": 19, | |
"type": "request" | |
} | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 19, "success": true, "command": "threads", "body": {"threads": [{"id": 1, "name": "MainThread"}]}, "seq": 42, "pydevd_cmd_id": 502} | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/server/cli.py - start_debugging | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/server/cli.py - run_file | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/server/cli.py - main | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/__main__.py - <module> | |
Set tracing of frame: /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/runpy.py - _run_code | |
Set tracing of frame: /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/runpy.py - _run_module_as_main | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/_vendored/pydevd/pydevd.py - settrace | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/server/api.py - _settrace | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/server/api.py - connect | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/server/api.py - debug | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/__init__.py - connect | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/common/compat.py - kwonly_f | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/server/cli.py - start_debugging | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/server/cli.py - run_file | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/server/cli.py - main | |
SKIP set tracing of frame: /home/ricks/Development/dev_tools/debugpy/src/debugpy/__main__.py - <module> | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/string.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/sysconfig.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/runpy.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/pkgutil.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/_globals.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/__config__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/version.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/_distributor_init.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/info.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/_collections_abc.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/os.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/multiarray.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/overrides.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/compat/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/compat/_inspect.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/compat/py3k.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/pathlib.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/functools.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/abc.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/collections/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/umath.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/numerictypes.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/_string_helpers.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/_type_aliases.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/_dtype.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/numeric.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/_internal.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/re.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/sre_compile.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/sre_parse.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/enum.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/pkg_resources/extern/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/pkg_resources/_vendor/six.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/fromnumeric.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/_methods.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/arrayprint.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/contextlib.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/defchararray.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/records.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/memmap.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/function_base.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/machar.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/getlimits.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/shape_base.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/einsumfunc.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/_add_newdocs.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/core/_dtype_ctypes.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/copyreg.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/_pytesttester.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/info.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/type_check.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/ufunclike.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/index_tricks.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/matrixlib/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/matrixlib/defmatrix.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/ast.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/linalg/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/linalg/info.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/linalg/linalg.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/twodim_base.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/function_base.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/utils.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/types.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/histograms.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/stride_tricks.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/mixins.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/nanfunctions.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/shape_base.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/scimath.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/polynomial.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/warnings.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/arraysetops.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/npyio.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/format.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/_datasource.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/_iotools.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/financial.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/arrayterator.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/arraypad.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/lib/_version.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/fft/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/fft/info.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/fft/fftpack.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/fft/helper.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/mkl_fft/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/mkl_fft/_version.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/mkl_fft/_numpy_fft.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/mkl_fft/_float_utils.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/polynomial/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/polynomial/polynomial.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/polynomial/polyutils.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/polynomial/_polybase.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/polynomial/chebyshev.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/polynomial/legendre.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/polynomial/hermite.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/polynomial/hermite_e.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/polynomial/laguerre.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/random/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/ctypeslib.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/ma/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/ma/core.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/textwrap.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/ma/extras.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/testing/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/unittest/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/unittest/result.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/unittest/util.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/unittest/case.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/difflib.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/logging/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/unittest/suite.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/unittest/loader.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/unittest/main.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/argparse.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/gettext.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/unittest/runner.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/unittest/signals.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/testing/_private/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/testing/_private/utils.py | |
Process ThreadsRequest: { | |
"command": "threads", | |
"seq": 20, | |
"type": "request" | |
} | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 20, "success": true, "command": "threads", "body": {"threads": [{"id": 1, "name": "MainThread"}]}, "seq": 44, "pydevd_cmd_id": 502} | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/testing/_private/decorators.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/testing/_private/nosetester.py | |
File traced: /home/ricks/Development/machine_learning_control_ws/src/sandbox/is_scalar.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/_utils.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/_utils_internal.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/version.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/_six.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/platform.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/random.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/serialization.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/tarfile.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/_tensor_str.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/tensor.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/_namedtensor_internals.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/utils/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/utils/throughput_benchmark.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/utils/hooks.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/storage.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/cuda/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/multiprocessing/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/multiprocessing/context.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/multiprocessing/process.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/multiprocessing/reduction.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/multiprocessing/util.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/cuda/_utils.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/traceback.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/tokenize.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/cuda/random.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/cuda/sparse.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/cuda/profiler.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/cuda/nvtx.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/cuda/streams.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/sparse/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/functional.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/module.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/parameter.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/linear.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/functional.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/_reduction.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/utils.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/grad.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/_VF.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/_jit_internal.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/typing.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/typing_extensions.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/init.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/conv.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/activation.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/loss.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/container.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/pooling.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/batchnorm.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/_functions.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/autograd/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/autograd/variable.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/autograd/function.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/autograd/gradcheck.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/testing/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/autograd/grad_mode.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/autograd/anomaly_mode.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/autograd/profiler.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/instancenorm.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/normalization.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/dropout.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/padding.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/sparse.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/rnn.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/utils/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/utils/rnn.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/utils/clip_grad.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/utils/weight_norm.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/utils/convert_parameters.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/utils/spectral_norm.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/utils/fusion.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/pixelshuffle.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/upsampling.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/distance.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/fold.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/adaptive.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/transformer.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/modules/flatten.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/parallel/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/parallel/parallel_apply.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/parallel/replicate.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/cuda/comm.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/cuda/nccl.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/parallel/data_parallel.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/parallel/scatter_gather.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/parallel/_functions.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/parallel/distributed.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributed/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributed/autograd/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributed/distributed_c10d.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributed/rendezvous.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributed/rpc.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributed/internal_rpc_utils.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributed/rpc_backend_registry.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/intrinsic/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/intrinsic/modules/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/intrinsic/modules/fused.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/quantized/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/quantized/modules/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/quantized/modules/activation.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/quantized/functional.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/quantized/modules/conv.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/intrinsic/qat/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/intrinsic/qat/modules/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/intrinsic/qat/modules/linear_relu.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/qat/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/qat/modules/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/qat/modules/linear.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/qat/modules/conv.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/intrinsic/qat/modules/conv_fused.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/_ops.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/jit/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/backends/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/backends/cudnn/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/jit/annotations.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/jit/_recursive.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/jit/frontend.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/inspect.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/quantized/modules/utils.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/quantized/modules/linear.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/quantized/modules/functional_modules.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/optim/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/optim/adadelta.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/optim/optimizer.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/optim/adagrad.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/optim/adam.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/optim/adamw.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/optim/sparse_adam.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/optim/adamax.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/optim/asgd.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/optim/sgd.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/optim/rprop.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/optim/rmsprop.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/optim/lbfgs.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/optim/lr_scheduler.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/multiprocessing/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/multiprocessing/reductions.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/multiprocessing/resource_sharer.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/multiprocessing/spawn.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/multiprocessing/connection.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/utils/backcompat/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/onnx/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/hub.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/urllib/request.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/urllib/error.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/urllib/response.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/tqdm/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/tqdm/std.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/tqdm/utils.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/tqdm/_monitor.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/tqdm/gui.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/tqdm/_tqdm_pandas.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/tqdm/cli.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/tqdm/_version.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/bernoulli.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/constraints.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/exp_family.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/distribution.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/utils.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/beta.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/dirichlet.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/binomial.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/categorical.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/cauchy.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/chi2.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/gamma.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/constraint_registry.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/transforms.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/exponential.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/fishersnedecor.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/geometric.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/gumbel.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/uniform.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/transformed_distribution.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/half_cauchy.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/half_normal.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/normal.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/independent.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/kl.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/laplace.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/lowrank_multivariate_normal.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/multivariate_normal.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/one_hot_categorical.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/pareto.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/poisson.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/log_normal.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/logistic_normal.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/multinomial.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/negative_binomial.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/relaxed_bernoulli.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/relaxed_categorical.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/studentT.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/distributions/weibull.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/backends/cuda/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/backends/mkl/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/backends/openmp/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/backends/quantized/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/quantization/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/quantization/quantize.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/quantization/default_mappings.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/intrinsic/quantized/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/intrinsic/quantized/modules/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/intrinsic/quantized/modules/linear_relu.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/intrinsic/quantized/modules/conv_relu.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/quantized/dynamic/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/quantized/dynamic/modules/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/quantized/dynamic/modules/linear.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/nn/quantized/dynamic/modules/rnn.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/quantization/stubs.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/quantization/QConfig.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/quantization/observer.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/quantization/fake_quantize.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/quantization/fuse_modules.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/utils/data/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/utils/data/sampler.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/utils/data/distributed.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/utils/data/dataset.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/utils/data/dataloader.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/utils/data/_utils/__init__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/utils/data/_utils/worker.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/utils/data/_utils/signal_handling.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/utils/data/_utils/pin_memory.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/utils/data/_utils/collate.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/utils/data/_utils/fetch.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/__config__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/__future__.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/_torch_docs.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/_tensor_docs.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/_storage_docs.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/_classes.py | |
File not traced (not in project - force_check_project_scope): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/torch/quasirandom.py | |
Suspending all threads except: <_MainThread(MainThread, started 139823735434112)> | |
PyDB.do_wait_suspend | |
name: <module> (line: 7) | |
file: /home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py | |
event: line | |
arg: None | |
step: CMD_STEP_INTO (original step: <Unknown: -1>) | |
thread: <_MainThread(MainThread, started 139823735434112)>, thread id: pid_23343_id_139823693069392, id(thread): 139823693069392 | |
Stack: /home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py, <module>, 7 | |
Stack: /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/runpy.py, _run_code, 85 | |
Stack: /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/runpy.py, _run_module_code, 96 | |
Stack: /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/runpy.py, run_path, 263 | |
Stack: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/server/cli.py, run_file, 267 | |
Stack: /home/ricks/Development/dev_tools/debugpy/src/debugpy/../debugpy/server/cli.py, main, 430 | |
Stack: /home/ricks/Development/dev_tools/debugpy/src/debugpy/__main__.py, <module>, 45 | |
Stack: /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/runpy.py, _run_code, 85 | |
Stack: /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/runpy.py, _run_module_as_main, 193 | |
Sending suspend notification. | |
sending cmd --> CMD_THREAD_SUSPEND_SINGLE_NOTIFICATION {"type": "event", "event": "stopped", "body": {"reason": "breakpoint", "threadId": 1, "preserveFocusHint": false, "allThreadsStopped": true}, "seq": 46, "pydevd_cmd_id": 157} | |
Process ThreadsRequest: { | |
"command": "threads", | |
"seq": 21, | |
"type": "request" | |
} | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 21, "success": true, "command": "threads", "body": {"threads": [{"id": 1, "name": "MainThread"}]}, "seq": 48, "pydevd_cmd_id": 502} | |
Process StackTraceRequest: { | |
"arguments": { | |
"format": {}, | |
"levels": 1, | |
"startFrame": 0, | |
"threadId": 1 | |
}, | |
"command": "stackTrace", | |
"seq": 22, | |
"type": "request" | |
} | |
sending cmd --> CMD_MODULE_EVENT {"type": "event", "event": "module", "body": {"reason": "new", "module": {"id": 0, "name": "__main__", "path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py"}}, "seq": 50, "pydevd_cmd_id": 203} | |
sending cmd --> CMD_MODULE_EVENT {"type": "event", "event": "module", "body": {"reason": "new", "module": {"id": 1, "name": "runpy", "path": "/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/runpy.py"}}, "seq": 52, "pydevd_cmd_id": 203} | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 22, "success": true, "command": "stackTrace", "body": {"stackFrames": [{"id": 2, "name": "<module>", "line": 7, "column": 1, "source": {"path": "/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py", "sourceReference": 0}}], "totalFrames": 1}, "seq": 54, "pydevd_cmd_id": 502} | |
Process ScopesRequest: { | |
"arguments": { | |
"frameId": 2 | |
}, | |
"command": "scopes", | |
"seq": 23, | |
"type": "request" | |
} | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 23, "success": true, "command": "scopes", "body": {"scopes": [{"name": "Locals", "variablesReference": 3, "expensive": false, "presentationHint": "locals", "source": {}}, {"name": "Globals", "variablesReference": 4, "expensive": false, "source": {}}]}, "seq": 56, "pydevd_cmd_id": 502} | |
Process StackTraceRequest: { | |
"arguments": { | |
"format": {}, | |
"levels": 19, | |
"startFrame": 1, | |
"threadId": 1 | |
}, | |
"command": "stackTrace", | |
"seq": 24, | |
"type": "request" | |
} | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 24, "success": true, "command": "stackTrace", "body": {"stackFrames": [], "totalFrames": 1}, "seq": 58, "pydevd_cmd_id": 502} | |
Process VariablesRequest: { | |
"arguments": { | |
"format": {}, | |
"variablesReference": 3 | |
}, | |
"command": "variables", | |
"seq": 25, | |
"type": "request" | |
} | |
processing internal command: InternalThreadCommands(<function internal_get_variable_json at 0x7f2b3c8eeb00>, (<_pydevd_bundle._debug_adapter.pydevd_schema.VariablesRequest object at 0x7f2ac4b1d050>,), {}) | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 25, "success": true, "command": "variables", "body": {"variables": [{"name": "special variables", "value": "", "type": "", "evaluateName": "special variables", "variablesReference": 5}, {"name": "function variables", "value": "", "type": "", "evaluateName": "function variables", "variablesReference": 6}, {"name": "np", "value": "<module 'numpy' from '/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/__init__.py'>", "type": "module", "evaluateName": "np", "variablesReference": 7}]}, "seq": 60, "pydevd_cmd_id": 502} | |
Process EvaluateRequest: { | |
"arguments": { | |
"context": "repl", | |
"expression": "test_array = np.array(2)", | |
"format": {}, | |
"frameId": 2 | |
}, | |
"command": "evaluate", | |
"seq": 26, | |
"type": "request" | |
} | |
processing internal command: InternalThreadCommands(<function internal_evaluate_expression_json at 0x7f2b3c8f9ef0>, (<_pydevd_bundle._debug_adapter.pydevd_schema.EvaluateRequest object at 0x7f2ac4b1d050>, 'pid_23343_id_139823693069392'), {}) | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 26, "success": true, "command": "evaluate", "body": {"result": "", "variablesReference": 0, "presentationHint": {}}, "seq": 62, "pydevd_cmd_id": 502} | |
Process ScopesRequest: { | |
"arguments": { | |
"frameId": 2 | |
}, | |
"command": "scopes", | |
"seq": 27, | |
"type": "request" | |
} | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 27, "success": true, "command": "scopes", "body": {"scopes": [{"name": "Locals", "variablesReference": 3, "expensive": false, "presentationHint": "locals", "source": {}}, {"name": "Globals", "variablesReference": 4, "expensive": false, "source": {}}]}, "seq": 64, "pydevd_cmd_id": 502} | |
Process VariablesRequest: { | |
"arguments": { | |
"format": {}, | |
"variablesReference": 3 | |
}, | |
"command": "variables", | |
"seq": 28, | |
"type": "request" | |
} | |
processing internal command: InternalThreadCommands(<function internal_get_variable_json at 0x7f2b3c8eeb00>, (<_pydevd_bundle._debug_adapter.pydevd_schema.VariablesRequest object at 0x7f2ac4b3bc90>,), {}) | |
sending cmd --> CMD_RETURN {"type": "response", "request_seq": 28, "success": true, "command": "variables", "body": {"variables": [{"name": "special variables", "value": "", "type": "", "evaluateName": "special variables", "variablesReference": 8}, {"name": "function variables", "value": "", "type": "", "evaluateName": "function variables", "variablesReference": 9}, {"name": "np", "value": "<module 'numpy' from '/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages/numpy/__init__.py'>", "type": "module", "evaluateName": "np", "variablesReference": 7}, {"name": "test_array", "value": "array(2)", "type": "ndarray", "evaluateName": "test_array", "variablesReference": 10}]}, "seq": 66, "pydevd_cmd_id": 502} | |
Process VariablesRequest: { | |
"arguments": { | |
"format": {}, | |
"variablesReference": 10 | |
}, | |
"command": "variables", | |
"seq": 29, | |
"type": "request" | |
} | |
processing internal command: InternalThreadCommands(<function internal_get_variable_json at 0x7f2b3c8eeb00>, (<_pydevd_bundle._debug_adapter.pydevd_schema.VariablesRequest object at 0x7f2ac4b3bc90>,), {}) | |
Sending resume notification. | |
sending cmd --> CMD_THREAD_RESUME_SINGLE_NOTIFICATION {"type": "event", "event": "continued", "body": {"threadId": 1, "allThreadsContinued": true}, "seq": 68, "pydevd_cmd_id": 158} | |
Traceback (most recent call last): | |
File "/home/ricks/Development/dev_tools/debugpy/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_frame.py", line 865, in trace_dispatch | |
self.do_wait_suspend(thread, frame, event, arg) | |
File "/home/ricks/Development/dev_tools/debugpy/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_frame.py", line 155, in do_wait_suspend | |
self._args[0].do_wait_suspend(*args, **kwargs) | |
File "/home/ricks/Development/dev_tools/debugpy/src/debugpy/_vendored/pydevd/pydevd.py", line 1846, in do_wait_suspend | |
keep_suspended = self._do_wait_suspend(thread, frame, event, arg, suspend_type, from_this_thread, frames_tracker) | |
File "/home/ricks/Development/dev_tools/debugpy/src/debugpy/_vendored/pydevd/pydevd.py", line 1880, in _do_wait_suspend | |
self.process_internal_commands() | |
File "/home/ricks/Development/dev_tools/debugpy/src/debugpy/_vendored/pydevd/pydevd.py", line 1586, in process_internal_commands | |
int_cmd.do_it(self) | |
File "/home/ricks/Development/dev_tools/debugpy/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_comm.py", line 496, in do_it | |
self.method(dbg, *self.args, **self.kwargs) | |
File "/home/ricks/Development/dev_tools/debugpy/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_comm.py", line 668, in internal_get_variable_json | |
for child_var in variable.get_children_variables(fmt=fmt, scope=scope): | |
File "/home/ricks/Development/dev_tools/debugpy/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_suspended_frames.py", line 166, in get_children_variables | |
dct = resolver.get_dictionary(self.value) | |
File "/home/ricks/Development/dev_tools/debugpy/src/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/pydevd_plugin_numpy_types.py", line 80, in get_dictionary | |
ret['[0:%s] ' % (len(obj))] = list(obj[0:MAX_ITEMS_TO_HANDLE]) | |
IndexError: too many indices for array | |
sending cmd --> CMD_THREAD_KILL {"type": "event", "event": "thread", "body": {"reason": "exited", "threadId": 1}, "seq": 70, "pydevd_cmd_id": 104} | |
PyDB.dispose_and_kill_all_pydevd_threads (called from: File "/home/ricks/Development/dev_tools/debugpy/src/debugpy/_vendored/pydevd/pydevd.py", line 1581, in process_internal_commands) | |
PyDB.dispose_and_kill_all_pydevd_threads (first call) | |
PyDB.dispose_and_kill_all_pydevd_threads no commands being processed. | |
PyDB.dispose_and_kill_all_pydevd_threads killing thread: <ReaderThread(pydevd.Reader, started daemon 139823622399744)> | |
pydevd.Reader received kill signal | |
PyDB.dispose_and_kill_all_pydevd_threads killing thread: <WriterThread(pydevd.Writer, started daemon 139823630792448)> | |
No threads alive, finishing debug session | |
sending cmd --> CMD_EXIT {"type": "event", "event": "terminated", "seq": 72, "body": {}, "pydevd_cmd_id": 129} | |
PyDB.dispose_and_kill_all_pydevd_threads (called from: File "/home/ricks/Development/dev_tools/debugpy/src/debugpy/_vendored/pydevd/pydevd.py", line 238, in _on_run) | |
PyDB.dispose_and_kill_all_pydevd_threads (already disposed - wait) | |
pydevd.Writer received kill signal | |
PyDB.dispose_and_kill_all_pydevd_threads waiting for pydb daemon threads to finish | |
WriterThread: CMD_EXIT received | |
PyDB.dispose_and_kill_all_pydevd_threads killing thread: <CheckAliveThread(pydevd.CheckAliveThread, started 139823390123776)> | |
pydevd.CheckAliveThread received kill signal | |
PyDB.dispose_and_kill_all_pydevd_threads killing thread: <_TimeoutThread(Thread-4, started daemon 139823613744896)> | |
WriterThread: exit | |
Thread-4 received kill signal | |
PyDB.dispose_and_kill_all_pydevd_threads killing thread: <PyDBCommandThread(pydevd.CommandThread, started daemon 139823398516480)> | |
pydevd.CommandThread received kill signal | |
PyDB.dispose_and_kill_all_pydevd_threads: finished | |
The following pydb threads may not have finished correctly: pydevd.Reader, pydevd.CommandThread | |
PyDB.dispose_and_kill_all_pydevd_threads: finished | |
pydevd.stoptrace() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I+00000.007: Linux-5.4.26-050426-generic-x86_64-with-debian-buster-sid x86_64 | |
CPython 3.7.7 (64-bit) | |
debugpy 1.0.0rc2 | |
I+00000.009: Initial environment: | |
System paths: | |
sys.prefix: /home/ricks/miniconda3/envs/machine_learning_control | |
sys.base_prefix: /home/ricks/miniconda3/envs/machine_learning_control | |
sys.real_prefix: <missing> | |
site.getsitepackages(): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages | |
site.getusersitepackages(): /home/ricks/.local/lib/python3.7/site-packages | |
sys.path (site-packages): /home/ricks/.local/lib/python3.7/site-packages | |
/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages | |
sysconfig.get_path('stdlib'): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7 | |
sysconfig.get_path('platstdlib'): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7 | |
sysconfig.get_path('purelib'): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages | |
sysconfig.get_path('platlib'): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages | |
sysconfig.get_path('include'): /home/ricks/miniconda3/envs/machine_learning_control/include/python3.7m | |
sysconfig.get_path('scripts'): /home/ricks/miniconda3/envs/machine_learning_control/bin | |
sysconfig.get_path('data'): /home/ricks/miniconda3/envs/machine_learning_control | |
os.__file__: /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/os.py | |
threading.__file__: /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/threading.py | |
I+00000.009: sys.argv before parsing: ['/home/ricks/Development/dev_tools/debugpy/src/debugpy', '--connect', '127.0.0.1:46227', '--configure-qt', 'auto', '--adapter-access-token', 'ba55f8203b5c007ff6de9e982b467900790dbaf36d23016aa4888c9963090226', '/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py'] | |
after parsing: ['/home/ricks/Development/dev_tools/debugpy/src/debugpy'] | |
D+00000.009: sys.argv after patching: ['/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py'] | |
D+00000.009: configure({'qt': 'auto', 'subProcess': True}, {}) | |
D+00000.009: connect(('127.0.0.1', 46227), **{'access_token': 'ba55f8203b5c007ff6de9e982b467900790dbaf36d23016aa4888c9963090226'}) | |
I+00000.009: Initial debug configuration: { | |
"qt": "auto", | |
"subProcess": true | |
} | |
D+00000.019: pydevd.settrace(*(), **{'host': '127.0.0.1', 'port': 46227, 'client_access_token': 'ba55f8203b5c007ff6de9e982b467900790dbaf36d23016aa4888c9963090226', 'suspend': False, 'patch_multiprocessing': True, 'dont_trace_start_patterns': ('/home/ricks/Development/dev_tools/debugpy/src/debugpy',), 'dont_trace_end_patterns': ('debugpy_launcher.py',)}) | |
I+00000.371: Pre-launch environment: | |
System paths: | |
sys.prefix: /home/ricks/miniconda3/envs/machine_learning_control | |
sys.base_prefix: /home/ricks/miniconda3/envs/machine_learning_control | |
sys.real_prefix: <missing> | |
site.getsitepackages(): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages | |
site.getusersitepackages(): /home/ricks/.local/lib/python3.7/site-packages | |
sys.path (site-packages): /home/ricks/.local/lib/python3.7/site-packages | |
/home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages | |
sysconfig.get_path('stdlib'): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7 | |
sysconfig.get_path('platstdlib'): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7 | |
sysconfig.get_path('purelib'): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages | |
sysconfig.get_path('platlib'): /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/site-packages | |
sysconfig.get_path('include'): /home/ricks/miniconda3/envs/machine_learning_control/include/python3.7m | |
sysconfig.get_path('scripts'): /home/ricks/miniconda3/envs/machine_learning_control/bin | |
sysconfig.get_path('data'): /home/ricks/miniconda3/envs/machine_learning_control | |
os.__file__: /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/os.py | |
threading.__file__: /home/ricks/miniconda3/envs/machine_learning_control/lib/python3.7/threading.py | |
I+00000.372: Running file '/home/ricks/Development/machine_learning_control_ws/src/sandbox/test_debugger.py' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment