Package com.onarandombox.MultiverseCore.utils

Examples of com.onarandombox.MultiverseCore.utils.DebugLog$LogFormatter


            getServer().getPluginManager().disablePlugin(this);
            return;
        }
        // Turn on Logging and register ourselves with Core
        log.info(logPrefix + "- Version " + this.getDescription().getVersion() + " Enabled - By " + getAuthors());
        debugLog = new DebugLog("Multiverse-Portals", getDataFolder() + File.separator + "debug.log");
        this.core.incrementPluginCount();

        // Register our commands
        this.registerCommands();
View Full Code Here


        try {
            debugLogFile.createNewFile();
        } catch (IOException e) {
            e.printStackTrace();
        }
        debugLog = new DebugLog(this.getDescription().getName(), getDataFolder() + File.separator + "debug.log");
        debugLog.setTag(String.format("[%s-Debug]", this.getDescription().getName()));

        this.onPluginEnable();
    }
View Full Code Here

TOP

Related Classes of com.onarandombox.MultiverseCore.utils.DebugLog$LogFormatter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.