Skip to content

Commit

Permalink
Fix logging level
Browse files Browse the repository at this point in the history
  • Loading branch information
pmaslana committed Sep 18, 2024
1 parent 410968e commit 54eee88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/github/findPRs.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func findPRs(cfg *config.Config, teamMembers map[string]bool, githubClient *gith

user := *pullRequest.User.Login
// If filtering community PRs, skip PRs by internal team members and users in SkipUsersMap
slogs.Logr.Debug("Checking user against skip list", "user", user, "skip list", cfg.SkipUsersMap)
slogs.Logr.Info("Checking user against skip list", "user", user, "skip list", cfg.SkipUsersMap)
if filterCommunity && (teamMembers[user] || cfg.SkipUsersMap[user]) {
slogs.Logr.Info("Pull request does not meet criteria, skipping", "PR", pullRequest.GetHTMLURL(), "user", user)
continue
Expand Down

0 comments on commit 54eee88

Please sign in to comment.