From e0c26825d368a78cf6dc3907397552c4e761fed1 Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Mon, 15 Jun 2015 10:29:28 -0700 Subject: [PATCH 1/2] Don't log each UDP batch Fixes issue #2989. --- services/udp/service.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 } From 7eed411bee5fa14b1dc271527f767963772e6f6e Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Mon, 15 Jun 2015 10:30:34 -0700 Subject: [PATCH 2/2] Update CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) 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]