Package com.kellerkindt.scs.utilities

Examples of com.kellerkindt.scs.utilities.SCSLogger


    this.saveDefaultConfig();   
   
   
    //Initialize the customer loggers
    if(Properties.logTransactions)
      logTrans = new SCSLogger("ShowCaseStandlone", getDataFolder() + File.separator + "transactions.log");
   
    if(Properties.threadDebug || Properties.chunkDebug || Properties.interactDebug || Properties.saveDebug)
      logDebug = new SCSLogger("ShowCaseStandalone", getDataFolder() + File.separator + "debug.log");
   
    // ShopHandler, ShopStorage
    log(Level.INFO, "Initializing ShopHandler and ShopStorage", true);
    log(Level.INFO, "Using " + Properties.storageType + " as storage type.", true);
    log(Level.INFO, "getDatafolder: " + getDataFolder(), true);
View Full Code Here

TOP

Related Classes of com.kellerkindt.scs.utilities.SCSLogger

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.