Skip to content

Commit

Permalink
[perforator] Move process counts logging to a more quiet category
Browse files Browse the repository at this point in the history
commit_hash:111e14692f20b8e9ac241b32920bde802c5ef5ca
  • Loading branch information
BigRedEye committed Feb 13, 2025
1 parent 3afadd9 commit e10f562
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions perforator/agent/collector/pkg/process/map.go
Original file line number Diff line number Diff line change
Expand Up @@ -303,12 +303,12 @@ func (r *ProcessRegistry) RunProcessPoller(ctx context.Context) error {
case <-tick.C:
}

r.log.Info(ctx, "Run process scanner")
r.log.Debug(ctx, "Run process scanner")
stats, err := r.scanProcesses(ctx)
if err != nil {
r.log.Error(ctx, "Process scanner failed", log.Error(err))
} else {
r.log.Info(ctx, "Finished process scanner", log.Any("stats", stats))
r.log.Debug(ctx, "Finished process scanner", log.Any("stats", stats))
}
}
}
Expand Down

0 comments on commit e10f562

Please sign in to comment.