로그 제거

This commit is contained in:
2025-08-12 17:40:03 +09:00
parent 54cb3e818f
commit 77397bd6bc

View File

@ -56,7 +56,6 @@ func (pc *PrometheusCollector) Describe(ch chan<- *prometheus.Desc) {
func (pc *PrometheusCollector) Collect(ch chan<- prometheus.Metric) {
for _, v := range pc.metrics {
logger.Println("collector collect :", v.Desc.String())
value := atomic.LoadUint64(v.valptr)
cm, err := prometheus.NewConstMetric(v.Desc, v.valueType, math.Float64frombits(value))
if err == nil {