Package fr.neatmonster.nocheatplus.stats

Examples of fr.neatmonster.nocheatplus.stats.Counters


                LogUtil.logSevere(t);
            }
        }

        // Write some debug/statistics.
        final Counters counters = getGenericInstance(Counters.class);
        if (verbose && counters != null) {
            LogUtil.logInfo(counters.getMergedCountsString(true));
        }

        // Hooks:
        // (Expect external plugins to unregister their hooks on their own.)
        // (No native hooks present, yet.)
View Full Code Here


        TickTask.cancel();
        TickTask.reset();

        // Register some generic stuff.
        // Counters: debugging purposes, maybe integrated for statistics later.
        registerGenericInstance(new Counters());

        // Read the configuration files.
        ConfigManager.init(this);

        // Setup file logger.
View Full Code Here

TOP

Related Classes of fr.neatmonster.nocheatplus.stats.Counters

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.