Merge pull request #104 from AlekSi/patch-1

Fix debug output
This commit is contained in:
Julius Volz 2015-08-28 15:50:06 +02:00
commit 704e8f76d8

View file

@ -30,9 +30,9 @@ func NewTimeCollector() (Collector, error) {
}
func (c *timeCollector) Update(ch chan<- prometheus.Metric) (err error) {
now := time.Now()
log.Debugf("Set time: %f", now.Unix())
c.metric.Set(float64(now.Unix()))
now := float64(time.Now().Unix())
log.Debugf("Set time: %f", now)
c.metric.Set(now)
c.metric.Collect(ch)
return err
}