Skip to content

Commit

Permalink
Remove error log from runnerfactor as error is returned by API (elast…
Browse files Browse the repository at this point in the history
  • Loading branch information
vjsamuel authored and ruflin committed Sep 5, 2017
1 parent 1046945 commit 3de1edb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Expand Up @@ -70,6 +70,7 @@ https://github.com/elastic/beats/compare/v6.0.0-beta2...master[Check the HEAD di
- Add PostgreSQL module with slowlog support. {pull}4763[4763]
- Add Kafka log module. {pull}4885[4885]
- Add support for `/var/log/containers/` log path in `add_kubernetes_metadata` processor. {pull}4981[4981]
- Remove error log from runnerfactory as error is returned by API. {pull}5085[5085]

*Heartbeat*

Expand Down
2 changes: 0 additions & 2 deletions filebeat/prospector/runnerfactory.go
Expand Up @@ -5,7 +5,6 @@ import (
"github.com/elastic/beats/filebeat/registrar"
"github.com/elastic/beats/libbeat/cfgfile"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/logp"
)

// RunnerFactory is a factory for registrars
Expand All @@ -28,7 +27,6 @@ func NewRunnerFactory(outlet channel.Factory, registrar *registrar.Registrar, be
func (r *RunnerFactory) Create(c *common.Config) (cfgfile.Runner, error) {
p, err := New(c, r.outlet, r.beatDone, r.registrar.GetStates())
if err != nil {
logp.Err("Error creating prospector: %s", err)
// In case of error with loading state, prospector is still returned
return p, err
}
Expand Down

0 comments on commit 3de1edb

Please sign in to comment.