Skip to content

Commit c1bc06d

Browse files
remove prints
1 parent 09ee570 commit c1bc06d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

datadog/dogstatsd/base.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -972,10 +972,8 @@ def histogram(
972972
>>> statsd.histogram("album.photo.count", 26, tags=["gender:female"])
973973
"""
974974
if not self._disable_aggregation and self.aggregator.max_samples_per_context != 0:
975-
print("Aggregated histogram")
976975
self.aggregator.histogram(metric, value, tags, sample_rate)
977976
else:
978-
print("Regular histogram")
979977
self._report(metric, "h", value, tags, sample_rate)
980978

981979
def distribution(

0 commit comments

Comments
 (0)