mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 09:47:38 +00:00
Raised level for platform registration log message.
This commit is contained in:
parent
4320ae9d1f
commit
d1a69fd985
@ -64,7 +64,7 @@ public class PlatformManager {
|
|||||||
*/
|
*/
|
||||||
public synchronized void register(Platform platform) throws PlatformRejectionException {
|
public synchronized void register(Platform platform) throws PlatformRejectionException {
|
||||||
checkNotNull(platform);
|
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);
|
platforms.add(platform);
|
||||||
if (this.primary == null) {
|
if (this.primary == null) {
|
||||||
commandManager.register(platform);
|
commandManager.register(platform);
|
||||||
|
Loading…
Reference in New Issue
Block a user