Skip to content

Commit

Permalink
chore: info -> debug
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Bressi <[email protected]>
  • Loading branch information
puffitos committed Dec 15, 2023
1 parent 89f799f commit 72d4775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/sparrow/targets/gitlab.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ func (t *gitlabTargetManager) refreshTargets(ctx context.Context) error {
// filter unhealthy targets - this may be removed in the future
for _, target := range targets {
if !t.Registered() && target.Url == fmt.Sprintf("https://%s", t.name) {
log.Info("Found self as global target", "lastSeenMin", time.Since(target.LastSeen).Minutes())
log.Debug("Found self as global target", "lastSeenMin", time.Since(target.LastSeen).Minutes())
t.registered = true
}
if time.Now().Add(-t.unhealthyThreshold).After(target.LastSeen) {
Expand Down

0 comments on commit 72d4775

Please sign in to comment.