diff --git a/CHANGELOG.md b/CHANGELOG.md index 895c84121d7..92413d37781 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ - [#2960](https://github.com/influxdb/influxdb/issues/2960): Cluster Write Errors - [#2928](https://github.com/influxdb/influxdb/pull/2928): Start work to set InfluxDB version in HTTP response headers. Thanks @neonstalwart. - [#2969](https://github.com/influxdb/influxdb/pull/2969): Actually set HTTP version in responses. +- [#2993](https://github.com/influxdb/influxdb/pull/2993): Don't log each UDP batch. ## v0.9.0 [2015-06-11] diff --git a/services/udp/service.go b/services/udp/service.go index 98996f570ff..cd9f1505025 100644 --- a/services/udp/service.go +++ b/services/udp/service.go @@ -90,9 +90,8 @@ func (s *Service) writePoints() { }) if err != nil { s.Logger.Printf("Failed to write points batch to database %s: %s", s.config.Database, err) - } else { - s.Logger.Printf("Wrote a batch of %d points to %s", len(batch), s.config.Database) } + case <-s.done: return }