Skip to content

Commit

Permalink
[receiver/filelog] Fix log level when no matches found (#32011)
Browse files Browse the repository at this point in the history
Fixes
##26525
again.
  • Loading branch information
djaglowski authored Mar 27, 2024
1 parent 1200aeb commit 91f8f22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/stanza/fileconsumer/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ func (m *Manager) poll(ctx context.Context) {
// Get the list of paths on disk
matches, err := m.fileMatcher.MatchFiles()
if err != nil {
m.Warnf("finding files: %v", err)
m.Debugf("finding files: %v", err)
}
m.Debugw("matched files", zap.Strings("paths", matches))

Expand Down

0 comments on commit 91f8f22

Please sign in to comment.