Author: gk
Date: Tue Aug 3 09:17:21 2021
New Revision: 1891976
URL: http://svn.apache.org/viewvc?rev=1891976&view=rev
Log:
- add Log4j2Logger here to use in Fulcrums more easily in upcoming releases,
that is move/deprecate same class in Turbine core and Fulcrum Testcontainer
- add .gitignore (for checkouts from git)
Added:
turbine/fulcrum/trunk/yaafi/.gitignore
turbine/fulcrum/trunk/yaafi/src/java/org/apache/fulcrum/yaafi/framework/logger/
turbine/fulcrum/trunk/yaafi/src/java/org/apache/fulcrum/yaafi/framework/logger/Log4j2Logger.java
Modified:
turbine/fulcrum/trunk/yaafi/pom.xml
Added: turbine/fulcrum/trunk/yaafi/.gitignore
URL:
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/yaafi/.gitignore?rev=1891976&view=auto
==============================================================================
--- turbine/fulcrum/trunk/yaafi/.gitignore (added)
+++ turbine/fulcrum/trunk/yaafi/.gitignore Tue Aug 3 09:17:21 2021
@@ -0,0 +1,6 @@
+target
+*.log
+.classpath
+.project
+*.iml
+.idea
\ No newline at end of file
Modified: turbine/fulcrum/trunk/yaafi/pom.xml
URL:
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/yaafi/pom.xml?rev=1891976&r1=1891975&r2=1891976&view=diff
==============================================================================
--- turbine/fulcrum/trunk/yaafi/pom.xml (original)
+++ turbine/fulcrum/trunk/yaafi/pom.xml Tue Aug 3 09:17:21 2021
@@ -79,6 +79,13 @@
<version>2.8.0</version>
</dependency>
+ <!-- use own Log4jLogger avalon adapter and replace other in
turbine and testcontainer in upcoming releases -->
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-api</artifactId>
+ <version>${turbine.log4j2.version}</version>
+ </dependency>
+
<!-- Avalon depedencies -->
<dependency>
<groupId>org.apache.avalon.framework</groupId>
Added:
turbine/fulcrum/trunk/yaafi/src/java/org/apache/fulcrum/yaafi/framework/logger/Log4j2Logger.java
URL:
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/yaafi/src/java/org/apache/fulcrum/yaafi/framework/logger/Log4j2Logger.java?rev=1891976&view=auto
==============================================================================
---
turbine/fulcrum/trunk/yaafi/src/java/org/apache/fulcrum/yaafi/framework/logger/Log4j2Logger.java
(added)
+++
turbine/fulcrum/trunk/yaafi/src/java/org/apache/fulcrum/yaafi/framework/logger/Log4j2Logger.java
Tue Aug 3 09:17:21 2021
@@ -0,0 +1,246 @@
+package org.apache.fulcrum.yaafi.framework.logger;
+
+import org.apache.avalon.framework.logger.Logger;
+import org.apache.logging.log4j.LogManager;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * A Log4J2 wrapper class for Logger.
+ *
+ * Replaces same class in Fulcrum Testcontainer and Turbine
+ *
+ * @author <a href="mailto:[email protected]">Thomas Vandahl</a>
+ */
+public final class Log4j2Logger
+ implements Logger
+{
+ // underlying implementation
+ private final org.apache.logging.log4j.Logger m_logger;
+
+ /**
+ * Create a logger that delegates to specified category.
+ *
+ * @param logImpl
+ * the category to delegate to
+ */
+ public Log4j2Logger(final org.apache.logging.log4j.Logger logImpl)
+ {
+ m_logger = logImpl;
+ }
+
+ /**
+ * Log a debug message.
+ *
+ * @param message
+ * the message
+ */
+ @Override
+ public void debug(final String message)
+ {
+ m_logger.debug(message);
+ }
+
+ /**
+ * Log a debug message.
+ *
+ * @param message
+ * the message
+ * @param throwable
+ * the throwable
+ */
+ @Override
+ public void debug(final String message, final Throwable throwable)
+ {
+ m_logger.debug(message, throwable);
+ }
+
+ /**
+ * Determine if messages of priority "debug" will be logged.
+ *
+ * @return true if "debug" messages will be logged
+ */
+ @Override
+ public boolean isDebugEnabled()
+ {
+ return m_logger.isDebugEnabled();
+ }
+
+ /**
+ * Log a info message.
+ *
+ * @param message
+ * the message
+ */
+ @Override
+ public void info(final String message)
+ {
+ m_logger.info(message);
+ }
+
+ /**
+ * Log a info message.
+ *
+ * @param message
+ * the message
+ * @param throwable
+ * the throwable
+ */
+ @Override
+ public void info(final String message, final Throwable throwable)
+ {
+ m_logger.info(message, throwable);
+ }
+
+ /**
+ * Determine if messages of priority "info" will be logged.
+ *
+ * @return true if "info" messages will be logged
+ */
+ @Override
+ public boolean isInfoEnabled()
+ {
+ return m_logger.isInfoEnabled();
+ }
+
+ /**
+ * Log a warn message.
+ *
+ * @param message
+ * the message
+ */
+ @Override
+ public void warn(final String message)
+ {
+ m_logger.warn(message);
+ }
+
+ /**
+ * Log a warn message.
+ *
+ * @param message
+ * the message
+ * @param throwable
+ * the throwable
+ */
+ @Override
+ public void warn(final String message, final Throwable throwable)
+ {
+ m_logger.warn(message, throwable);
+ }
+
+ /**
+ * Determine if messages of priority "warn" will be logged.
+ *
+ * @return true if "warn" messages will be logged
+ */
+ @Override
+ public boolean isWarnEnabled()
+ {
+ return m_logger.isWarnEnabled();
+ }
+
+ /**
+ * Log a error message.
+ *
+ * @param message
+ * the message
+ */
+ @Override
+ public void error(final String message)
+ {
+ m_logger.error(message);
+ }
+
+ /**
+ * Log a error message.
+ *
+ * @param message
+ * the message
+ * @param throwable
+ * the throwable
+ */
+ @Override
+ public void error(final String message, final Throwable throwable)
+ {
+ m_logger.error(message, throwable);
+ }
+
+ /**
+ * Determine if messages of priority "error" will be logged.
+ *
+ * @return true if "error" messages will be logged
+ */
+ @Override
+ public boolean isErrorEnabled()
+ {
+ return m_logger.isErrorEnabled();
+ }
+
+ /**
+ * Log a fatalError message.
+ *
+ * @param message
+ * the message
+ */
+ @Override
+ public void fatalError(final String message)
+ {
+ m_logger.fatal(message);
+ }
+
+ /**
+ * Log a fatalError message.
+ *
+ * @param message
+ * the message
+ * @param throwable
+ * the throwable
+ */
+ @Override
+ public void fatalError(final String message, final Throwable throwable)
+ {
+ m_logger.fatal(message, throwable);
+ }
+
+ /**
+ * Determine if messages of priority "fatalError" will be logged.
+ *
+ * @return true if "fatalError" messages will be logged
+ */
+ @Override
+ public boolean isFatalErrorEnabled()
+ {
+ return m_logger.isFatalEnabled();
+ }
+
+ /**
+ * Create a new child logger. The name of the child logger is
+ * [current-loggers-name].[passed-in-name] Throws
+ * <code>IllegalArgumentException</code> if name has an empty element name
+ *
+ * @param name
+ * the subname of this logger
+ * @return the new logger
+ */
+ @Override
+ public Logger getChildLogger(final String name)
+ {
+ return new Log4j2Logger(LogManager.getLogger(m_logger.getName() + "."
+ name));
+ }
+}