Skip to content

Commit

Permalink
change logger to the same as before
Browse files Browse the repository at this point in the history
  • Loading branch information
WegFetZ committed Dec 29, 2014
1 parent 8a1564e commit 83e5351
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
import java.util.Map.Entry;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Logger;

import org.bukkit.Bukkit;
import org.bukkit.World;
import org.bukkit.plugin.Plugin;
Expand Down Expand Up @@ -53,7 +51,7 @@ public void onEnable() {
Thread.currentThread().setName("SoundCenter Plugin");

config = new Configuration(this);
logger = new SCLogger(Logger.getLogger(SoundCenter.class.getCanonicalName()), config.debug());
logger = new SCLogger(this.getLogger(), config.debug());
userList = new UserList();

// register commands
Expand Down

0 comments on commit 83e5351

Please sign in to comment.