Skip to content

Commit e72a1ec

Browse files
committed
more debug print
1 parent 452e4a1 commit e72a1ec

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

ddtrace/internal/core/crashtracking.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ def start() -> bool:
3636
if f.is_file():
3737
print(f.name)
3838

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+
3946
print(failure_msg)
4047
for k, v in os.environ.items():
4148
print(k, v)

0 commit comments

Comments
 (0)