Skip to content

Commit

Permalink
Remove copy/paste of log line
Browse files Browse the repository at this point in the history
  • Loading branch information
jrdnbradford committed Sep 22, 2024
1 parent 833bb08 commit cf709af
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions oauthenticator/google.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,14 +408,11 @@ def _fetch_member_groups(
member_groups = {
g['email'].split('@')[0] for g in resp.get('groups', []) if g.get('email')
}

self.log.debug(f"Fetched groups for {member_email}: {member_groups}")

checked_groups.update(member_groups)
self.log.debug(f"Checked groups after update: {checked_groups}")

self.log.debug(f"Checked groups after update: {checked_groups}")

if self.allow_nested_groups:
for group in member_groups:
if group not in processed_groups:
Expand Down

0 comments on commit cf709af

Please sign in to comment.