Skip to content

Commit

Permalink
Merge pull request #2993 from influxdb/too_much_udp_logging
Browse files Browse the repository at this point in the history
Don't log each UDP batch
  • Loading branch information
otoolep committed Jun 15, 2015
2 parents b440c59 + 7eed411 commit 47de2c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down
3 changes: 1 addition & 2 deletions services/udp/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 47de2c7

Please sign in to comment.