Package common.db.io

Examples of common.db.io.Logger


  }

  private static synchronized void writeToUI(String line)
  {
    if (uiLogger == null)
      uiLogger = new Logger(UI_LOG);

    uiLogger.log(line);

  }
View Full Code Here


  }

  private static synchronized void writeToCore(String line)
  {
    if (coreLogger == null)
      coreLogger = new Logger(CORE_LOG);

    coreLogger.log(line);

  }
View Full Code Here

TOP

Related Classes of common.db.io.Logger

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.