From 226c5876677827b835971c530298a1c0b4578a81 Mon Sep 17 00:00:00 2001 From: Matthias Schneider Date: Tue, 24 Jan 2023 10:23:14 +0100 Subject: [PATCH] #199 removed log printing --- scope_registry.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/scope_registry.go b/scope_registry.go index 4d5e6b38..37057a1d 100644 --- a/scope_registry.go +++ b/scope_registry.go @@ -22,7 +22,6 @@ package tally import ( "hash/maphash" - "log" "runtime" "sync" "unsafe" @@ -250,7 +249,6 @@ func (r *scopeRegistry) reportInternalMetrics() { counters.Add(rootCounters.Load()) gauges.Add(rootGauges.Load()) histograms.Add(rootHistograms.Load()) - log.Printf("counters: %v, gauges: %v, histograms: %v\n", counters.Load(), gauges.Load(), histograms.Load()) if r.root.reporter != nil { r.root.reporter.ReportCounter(counterCardinalityName, internalTags, counters.Load())