Package com.firefly.utils.log

Examples of com.firefly.utils.log.Log


    queue.offer(logItem);
  }

  private void write() {
    for (LogItem logItem = null; (logItem = queue.poll()) != null;) {
      Log log = LogFactory.getInstance().getLog(logItem.getName());
      if (log instanceof FileLog) {
        FileLog fileLog = (FileLog) log;
        fileLog.write(logItem);
      }
    }
View Full Code Here


    queue.offer(logItem);
  }

  private void write() {
    for (LogItem logItem = null; (logItem = queue.poll()) != null;) {
      Log log = LogFactory.getInstance().getLog(logItem.getName());
      if (log instanceof FileLog) {
        ((FileLog)log).write(logItem);
      }
    }
//    System.out.println(">>> flush");
View Full Code Here

TOP

Related Classes of com.firefly.utils.log.Log

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.