Skip to content

Commit

Permalink
Merge pull request #53 from Chia-Network/fix-logging-level
Browse files Browse the repository at this point in the history
Fix logging level
  • Loading branch information
pmaslana authored Sep 18, 2024
2 parents 410968e + 54eee88 commit a19e0f5
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 a19e0f5

Please sign in to comment.