This commit is contained in:
Sean Braithwaite 2019-08-08 16:54:25 +02:00
parent e826ca3c49
commit aeac4743cc

View File

@ -90,7 +90,7 @@ func (rt *Routine) start() {
rt.metrics.EventsOut.With("routine", rt.name).Add(float64(len(oEvents)))
rt.logger.Info(fmt.Sprintf("%s handled %d events\n", rt.name, len(oEvents)))
for _, event := range oEvents {
rt.logger.Info(fmt.Sprintln("writting back to output"))
rt.logger.Info(fmt.Sprintln("writing back to output"))
rt.out <- event
}
case iEvent, ok := <-rt.errors: