func()

in spectator/meter/timer.go [28:33]


func (t *Timer) Record(amount time.Duration) {
	if amount >= 0 {
		var line = fmt.Sprintf("%s:%s:%f", t.meterTypeSymbol, t.id.spectatordId, amount.Seconds())
		t.writer.Write(line)
	}
}