Remove extra space in log output

This commit is contained in:
Julius Volz 2017-08-29 15:24:00 +02:00 committed by GitHub
parent 35c952e344
commit aa5cdcb11e

View file

@ -179,7 +179,7 @@ func buildClients(cfg *config) ([]writer, []reader) {
writers = append(writers, c)
readers = append(readers, c)
}
log.Info("Starting up... ")
log.Info("Starting up...")
return writers, readers
}