We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1d422b commit f36f5ecCopy full SHA for f36f5ec
Essentials/src/com/earth2me/essentials/User.java
@@ -651,7 +651,12 @@ public String getGroup()
651
@Override
652
public boolean inGroup(final String group)
653
{
654
- return ess.getPermissionsHandler().inGroup(base, group);
+ final boolean result = ess.getPermissionsHandler().inGroup(base, group);
655
+ if (ess.getSettings().isDebug())
656
+ {
657
+ ess.getLogger().log(Level.INFO, "checking if " + base.getName() + " is in " + group + " - " + result);
658
+ }
659
+ return result;
660
}
661
662
0 commit comments