Package org.gatein.common.logging

Examples of org.gatein.common.logging.Log4JWriter


      pw.flush();
   }

   public static void dumpClassLoaderHierarchyInfo(Logger log, ClassLoader loader)
   {
      Writer writer = new Log4JWriter(log, Level.DEBUG);
      dumpClassLoaderHierarchyInfo(writer, loader);
   }
View Full Code Here


      dumpClassLoaderHierarchyInfo(writer, loader);
   }

   public static void dumpClassLoaderHierarchyInfo(Logger log, Level level, ClassLoader loader)
   {
      Writer writer = new Log4JWriter(log, level);
      dumpClassLoaderHierarchyInfo(writer, loader);
   }
View Full Code Here

TOP

Related Classes of org.gatein.common.logging.Log4JWriter

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.