We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 452e4a1 commit e72a1ecCopy full SHA for e72a1ec
ddtrace/internal/core/crashtracking.py
@@ -36,6 +36,13 @@ def start() -> bool:
36
if f.is_file():
37
print(f.name)
38
39
+ # also print the contents of the profiling directory
40
+ # ddtrace/internal/datadog/profiling
41
+ profiling_dir = Path(__file__).parent.parent / "datadog" / "profiling"
42
+ for f in profiling_dir.iterdir():
43
+ if f.is_file():
44
+ print(f.name)
45
+
46
print(failure_msg)
47
for k, v in os.environ.items():
48
print(k, v)
0 commit comments