1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-14 02:24:16 +02:00

Merge pull request #485 from necrodoom/patch-29

no permissions is not an error, so dont output it as a warning
This commit is contained in:
KHobbits
2013-06-12 02:59:55 -07:00

View File

@@ -403,7 +403,7 @@ public class Essentials extends JavaPlugin implements IEssentials
// Check authorization
if (user != null && !user.isAuthorized(cmd, permissionPrefix))
{
LOGGER.log(Level.WARNING, _("deniedAccessCommand", user.getName()));
LOGGER.log(Level.INFO, _("deniedAccessCommand", user.getName()));
user.sendMessage(_("noAccessCommand"));
return true;
}