Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-05 11:00:05 +01:00
Raised level for platform registration log message.
Dieser Commit ist enthalten in:
Ursprung
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);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren