There was an error while loading. Please reload this page.
1 parent fc63aa4 commit 11b325cCopy full SHA for 11b325c
dap_client.py
@@ -5,7 +5,7 @@
5
6
HOST = "127.0.0.1"
7
PORT = 5678
8
-DEPTH_LIMIT = 3 # How many levels deep to fetch variables
+DEPTH_LIMIT = 2 # How many levels deep to fetch variables
9
10
11
def read_line(sock):
pov.py
@@ -33,6 +33,7 @@ def render_variable_tree(variables):
33
"""
34
Renders a list of variables (each may have 'children') in a nested tree format.
35
36
+ print(f"Rendering variable tree with {len(variables)} variables")
37
for v in variables:
38
# print(f"Rendering variable tree for: {v}")
39
name = v["name"]
0 commit comments