Package org.jboss.test.logging

Source Code of org.jboss.test.logging.LoggingPlugin

/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This 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; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.test.logging;

import org.jboss.test.logging.jdk.JDKConsoleLoggingPlugin;

/**
* A LoggingPlugin.
*
* @author <a href="adrian@jboss.com">Adrian Brock</a>
* @version $Revision: 59261 $
*/
public abstract class LoggingPlugin
{
   /**
    * Get the logging plugin. This looks at the system property org.jboss.test.logging.LogginPlugin,
    * and if this is not defined, org.jboss.test.logging.Log4jLoggingPlugin is used. Another
    * useful default is org.jboss.test.logging.Log4jConsoleLoggingPlugin, a plugin that
    * simply configures a console appender.
    * @see org.jboss.test.logging.Log4jLoggingPlugin
    * @see org.jboss.test.logging.Log4jConsoleLoggingPlugin
    *
    * @return the logging plugin
    * @throws Exception for any error
    */
   public static LoggingPlugin getInstance() throws Exception
   {
      String loggingClassName = System.getProperty("org.jboss.test.logging.LogginPlugin", "org.jboss.test.logging.Log4jLoggingPlugin");
      try
      {
         Class loggingClass  = Thread.currentThread().getContextClassLoader().loadClass(loggingClassName);
         return (LoggingPlugin) loggingClass.newInstance();
      }
      catch(NoClassDefFoundError e)
      {
         // Default to JDK
         LoggingPlugin plugin = new JDKConsoleLoggingPlugin();
         return plugin;        
      }
      catch(ClassNotFoundException e)
      {
         // Default to JDK
         LoggingPlugin plugin = new JDKConsoleLoggingPlugin();
         return plugin;
      }
   }

   /**
    * Setup the logging
    *
    * @throws Exception for any error
    */
   public void setUp() throws Exception
   {
   }

   /**
    * Teardown the logging
    *
    * @throws Exception for any error
    */
   public void tearDown() throws Exception
   {
   }

   /**
    * Enable trace for a logger category
    *
    * @param name the name of the category
    */
   public void enableTrace(String name)
   {
   }
}
TOP

Related Classes of org.jboss.test.logging.LoggingPlugin

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.