[jboss-svn-commits] JBoss Common SVN: r1920 - in branches/logging_refactoring: common-logging-spi/src/main/java/org/jboss/logging src/main/org/jboss/logging

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Aug 3 09:37:20 EDT 2006


Author: ruel.loehr at jboss.com
Date: 2006-08-03 09:37:17 -0400 (Thu, 03 Aug 2006)
New Revision: 1920

Added:
   branches/logging_refactoring/common-logging-spi/src/main/java/org/jboss/logging/NullLoggerPlugin.java
Removed:
   branches/logging_refactoring/src/main/org/jboss/logging/NullLoggerPlugin.java
Log:
move spi classes to indep project

Copied: branches/logging_refactoring/common-logging-spi/src/main/java/org/jboss/logging/NullLoggerPlugin.java (from rev 1919, branches/logging_refactoring/src/main/org/jboss/logging/NullLoggerPlugin.java)

Deleted: branches/logging_refactoring/src/main/org/jboss/logging/NullLoggerPlugin.java
===================================================================
--- branches/logging_refactoring/src/main/org/jboss/logging/NullLoggerPlugin.java	2006-08-03 13:36:51 UTC (rev 1919)
+++ branches/logging_refactoring/src/main/org/jboss/logging/NullLoggerPlugin.java	2006-08-03 13:37:17 UTC (rev 1920)
@@ -1,93 +0,0 @@
-/*
-  * 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.logging;
-
-/**
- * LoggerPlugin implementation producing no output at all. Used for client
- * side logging when no log4j.jar is available on the classpath.
- *
- * @see org.jboss.logging.Logger
- * @see org.jboss.logging.LoggerPlugin
- *
- * @author  <a href="mailto:sacha.labourey at cogito-info.ch">Sacha Labourey</a>.
- * @version $Revision$
- *
- * <p><b>Revisions:</b>
- *
- * <p><b>30 mai 2002 Sacha Labourey:</b>
- * <ul>
- * <li> First implementation </li>
- * </ul>
- */
-
-public class NullLoggerPlugin implements LoggerPlugin
-{
-   
-   // Constants -----------------------------------------------------
-   
-   // Attributes ----------------------------------------------------
-   
-   // Static --------------------------------------------------------
-   
-   // Constructors --------------------------------------------------
-   
-   public NullLoggerPlugin () { }
-   
-   public void init (String name)
-   { /* don't care */ }
-   
-   // Public --------------------------------------------------------
-   
-   public boolean isTraceEnabled () { return false; }
-   public void trace (Object message) { }   
-   public void trace (Object message, Throwable t) { }
-   
-   public boolean isDebugEnabled () { return false; }
-   public void debug (Object message) { }   
-   public void debug (Object message, Throwable t) { }
-   
-   public boolean isInfoEnabled () { return false; }
-   public void info (Object message) { }   
-   public void info (Object message, Throwable t) { }
-   
-   public void error (Object message) { }   
-   public void error (Object message, Throwable t) { }
-   
-   public void fatal (Object message) { }   
-   public void fatal (Object message, Throwable t) { }
-   
-   public void warn (Object message) { }   
-   public void warn (Object message, Throwable t) { }
-   
-   // Z implementation ----------------------------------------------
-   
-   // Y overrides ---------------------------------------------------
-   
-   // Package protected ---------------------------------------------
-   
-   // Protected -----------------------------------------------------
-   
-   // Private -------------------------------------------------------
-   
-   // Inner classes -------------------------------------------------
-   
-}




More information about the jboss-svn-commits mailing list