Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewqian2001datadog committed Jan 24, 2025
1 parent 09ee570 commit c1bc06d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions datadog/dogstatsd/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -972,10 +972,8 @@ def histogram(
>>> statsd.histogram("album.photo.count", 26, tags=["gender:female"])
"""
if not self._disable_aggregation and self.aggregator.max_samples_per_context != 0:
print("Aggregated histogram")
self.aggregator.histogram(metric, value, tags, sample_rate)
else:
print("Regular histogram")
self._report(metric, "h", value, tags, sample_rate)

def distribution(
Expand Down

0 comments on commit c1bc06d

Please sign in to comment.