We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent beb2113 commit 3b703bbCopy full SHA for 3b703bb
1 file changed
internal/prometheus/prometheus.go
@@ -3,7 +3,6 @@ package prometheus
3
import (
4
"fmt"
5
"io"
6
- "log"
7
"sync"
8
"time"
9
@@ -78,7 +77,6 @@ func initCtLogMetrics() {
78
77
func getCertCountForLog(operatorName, logname string) int64 {
79
// Add some caching to avoid having to lock the mutex every time
80
if time.Since(tempCertMetricsLastRefreshed) > time.Second*5 {
81
- log.Println("Refreshing tempCertMetrics")
82
tempCertMetricsLastRefreshed = time.Now()
83
tempCertMetrics = certificatetransparency.GetCertMetrics()
84
}
0 commit comments