Skip to content

Commit 8e923b0

Browse files
committed
print crashtracker dir
1 parent e72a1ec commit 8e923b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ddtrace/internal/core/crashtracking.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ def start() -> bool:
3838

3939
# also print the contents of the profiling directory
4040
# ddtrace/internal/datadog/profiling
41-
profiling_dir = Path(__file__).parent.parent / "datadog" / "profiling"
42-
for f in profiling_dir.iterdir():
41+
crashtracker_dir = Path(__file__).parent.parent / "datadog" / "profiling" / "crashtracker"
42+
for f in crashtracker_dir.iterdir():
4343
if f.is_file():
4444
print(f.name)
4545

0 commit comments

Comments
 (0)