Use different logger in permissions manager

This commit is contained in:
Tim Visée 2015-11-20 20:50:27 +01:00
parent 9932242f6f
commit 4978f195f8

View File

@ -458,7 +458,7 @@ public class AuthMe extends JavaPlugin {
* Set up the permissions manager. * Set up the permissions manager.
*/ */
public void setupPermissionsManager() { public void setupPermissionsManager() {
this.permsMan = new PermissionsManager(Bukkit.getServer(), this, this.authmeLogger); this.permsMan = new PermissionsManager(Bukkit.getServer(), this, getLogger());
this.permsMan.setup(); this.permsMan.setup();
} }