Skip to content

Commit c4faf56

Browse files
fix(profiling): keep native heap arming success at LOG.info
Restore the PR B operator-visible success signal when adding the live-heap vs allocation-only mode string; the debug demotion was accidental.
1 parent fd26d19 commit c4faf56

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ddtrace/profiling/profiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ def _start_service(self) -> None:
387387
try:
388388
if heap_gotter.install():
389389
mode: str = "live-heap" if heap_gotter.live_heap_enabled() else "allocation-only"
390-
LOG.debug("Native heap profiling armed (GOT overrides installed, %s)", mode)
390+
LOG.info("Native heap profiling armed (GOT overrides installed, %s)", mode)
391391
else:
392392
LOG.warning("Native heap profiling requested but GOT overrides were not installed")
393393
except Exception:

0 commit comments

Comments
 (0)