Skip to content

Commit

Permalink
Adjust log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKvalheim committed Nov 5, 2024
1 parent 4e5e9af commit 795176d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/Reconciler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export default class extends Module {
.map((m) => [m.membershipFor, defaultLevel]),
);

this.info("🛡️ Inherit user power levels", { room, explicit, implicit, raiseTo });
this.debug("🛡️ Inherit user power levels", { room, explicit, implicit, raiseTo });
for (const [user, level] of Object.entries({ ...implicit, ...explicit }))
users[user] = Math.min(99, Math.max(users[user] ?? 0, level, raiseTo));
}
Expand Down

0 comments on commit 795176d

Please sign in to comment.