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

no permissions is not an error, so dont output it as a warning

This commit is contained in:
Necrodoom
2013-06-12 12:41:15 +03:00
parent 85aa487b45
commit c221cf66f5

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;
}