Raised level for platform registration log message.

This commit is contained in:
sk89q 2014-04-05 22:05:58 -07:00
parent 4320ae9d1f
commit d1a69fd985

View File

@ -64,7 +64,7 @@ public class PlatformManager {
*/
public synchronized void register(Platform platform) throws PlatformRejectionException {
checkNotNull(platform);
logger.log(Level.FINE, "Got request to register " + platform.getClass().getCanonicalName() + " with WorldEdit");
logger.log(Level.INFO, "Got request to register " + platform.getClass() + " with WorldEdit [" + super.toString() + "]");
platforms.add(platform);
if (this.primary == null) {
commandManager.register(platform);