Package ch.qos.logback.core.util

Source Code of ch.qos.logback.core.util.StatusPrinter

/**
* LOGBack: the reliable, fast and flexible logging library for Java.
*
* Copyright (C) 1999-2006, QOS.ch
*
* This library is free software, you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation.
*/
package ch.qos.logback.core.util;

import java.util.Iterator;

import ch.qos.logback.core.status.Status;
import ch.qos.logback.core.status.StatusManager;

public class StatusPrinter {

  public static void print(StatusManager sm) {
   
    Iterator it = sm.iterator();
    while(it.hasNext()) {
      Status s = (Status) it.next();
      System.out.println(s);
      if(s.getThrowable() != null) {
        s.getThrowable().printStackTrace(System.out);
      }
    }
  }
}
TOP

Related Classes of ch.qos.logback.core.util.StatusPrinter

TOP
Copyright © 2018 www.massapi.com. 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.