We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2dca2f commit 648781aCopy full SHA for 648781a
libbeat/cfgfile/reload.go
@@ -220,7 +220,9 @@ func (rl *Reloader) Run(runnerFactory RunnerFactory) {
220
if forceReload {
221
rl.logger.Debugf("error '%v' can be retried. Will try again in %s", err, rl.config.Reload.Period.String())
222
} else {
223
- rl.logger.Debugf("error '%v' cannot retried. Modify any input file to reload.", err)
+ if err != nil {
224
+ rl.logger.Debugf("error '%v' cannot retried. Modify any input file to reload.", err)
225
+ }
226
}
227
228
0 commit comments