All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.modeshape.jcr.api.Logger Maven / Gradle / Ivy

There is a newer version: 5.4.1.Final
Show newest version
/*
 * ModeShape (http://www.modeshape.org)
 * See the COPYRIGHT.txt file distributed with this work for information
 * regarding copyright ownership.  Some portions may be licensed
 * to Red Hat, Inc. under one or more contributor license agreements.
 * See the AUTHORS.txt file in the distribution for a full listing of
 * individual contributors.
 *
 * ModeShape is free software. Unless otherwise indicated, all code in ModeShape
 * is licensed to you 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.
 *
 * ModeShape 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.modeshape.jcr.api;

/**
 * A generic logger interface.
 *
 * @author Horia Chiorean
 */
public interface Logger {

    /**
     * Log a message at the DEBUG level according to the specified format and (optional) parameters. The message should contain a
     * pair of empty curly braces for each of the parameter, which should be passed in the correct order. The pattern consists of
     * zero or more keys of the form {n}, where n is an integer starting at 0. Therefore, the first
     * parameter replaces all occurrences of "{0}", the second parameter replaces all occurrences of "{1}", etc.
     * 

* If any parameter is null, the corresponding key is replaced with the string "null". Therefore, consider using an empty * string when keys are to be removed altogether. *

* * @param message the message string * @param params the parameter values that are to replace the variables in the format string */ public void debug( String message, Object... params ); /** * Log an exception (throwable) at the DEBUG level with an accompanying message. If the exception is null, then this method * calls {@link #debug(String, Object...)}. * * @param t the exception (throwable) to log * @param message the message accompanying the exception * @param params the parameter values that are to replace the variables in the format string */ public abstract void debug( Throwable t, String message, Object... params ); /** * Log a message at the ERROR level according to the specified format and (optional) parameters. The message should contain a * pair of empty curly braces for each of the parameter, which should be passed in the correct order. The pattern consists of * zero or more keys of the form {n}, where n is an integer starting at 0. Therefore, the first * parameter replaces all occurrences of "{0}", the second parameter replaces all occurrences of "{1}", etc. *

* If any parameter is null, the corresponding key is replaced with the string "null". Therefore, consider using an empty * string when keys are to be removed altogether. *

* * @param message the message string * @param params the parameter values that are to replace the variables in the format string */ public abstract void error( String message, Object... params ); /** * Log an exception (throwable) at the ERROR level with an accompanying message. If the exception is null, then this method * calls {@link #error(String, Object...)}. * * @param t the exception (throwable) to log * @param message the message accompanying the exception * @param params the parameter values that are to replace the variables in the format string */ public abstract void error( Throwable t, String message, Object... params ); /** * Log a message at the INFO level according to the specified format and (optional) parameters. The message should contain a * pair of empty curly braces for each of the parameter, which should be passed in the correct order. The pattern consists of * zero or more keys of the form {n}, where n is an integer starting at 0. Therefore, the first * parameter replaces all occurrences of "{0}", the second parameter replaces all occurrences of "{1}", etc. *

* If any parameter is null, the corresponding key is replaced with the string "null". Therefore, consider using an empty * string when keys are to be removed altogether. *

* * @param message the message string * @param params the parameter values that are to replace the variables in the format string */ public abstract void info( String message, Object... params ); /** * Log an exception (throwable) at the INFO level with an accompanying message. If the exception is null, then this method * calls {@link #info(String, Object...)}. * * @param t the exception (throwable) to log * @param message the message accompanying the exception * @param params the parameter values that are to replace the variables in the format string */ public abstract void info( Throwable t, String message, Object... params ); /** * Log a message at the TRACE level according to the specified format and (optional) parameters. The message should contain a * pair of empty curly braces for each of the parameter, which should be passed in the correct order. The pattern consists of * zero or more keys of the form {n}, where n is an integer starting at 0. Therefore, the first * parameter replaces all occurrences of "{0}", the second parameter replaces all occurrences of "{1}", etc. *

* If any parameter is null, the corresponding key is replaced with the string "null". Therefore, consider using an empty * string when keys are to be removed altogether. *

* * @param message the message string * @param params the parameter values that are to replace the variables in the format string */ public abstract void trace( String message, Object... params ); /** * Log an exception (throwable) at the TRACE level with an accompanying message. If the exception is null, then this method * calls {@link #trace(String, Object...)}. * * @param t the exception (throwable) to log * @param message the message accompanying the exception * @param params the parameter values that are to replace the variables in the format string */ public abstract void trace( Throwable t, String message, Object... params ); /** * Log a message at the WARNING level according to the specified format and (optional) parameters. The message should contain * a pair of empty curly braces for each of the parameter, which should be passed in the correct order. The pattern consists of * zero or more keys of the form {n}, where n is an integer starting at 0. Therefore, the first * parameter replaces all occurrences of "{0}", the second parameter replaces all occurrences of "{1}", etc. *

* If any parameter is null, the corresponding key is replaced with the string "null". Therefore, consider using an empty * string when keys are to be removed altogether. *

* * @param message the message string * @param params the parameter values that are to replace the variables in the format string */ public abstract void warn( String message, Object... params ); /** * Log an exception (throwable) at the WARNING level with an accompanying message. If the exception is null, then this method * calls {@link #warn(String, Object...)}. * * @param t the exception (throwable) to log * @param message the message accompanying the exception * @param params the parameter values that are to replace the variables in the format string */ public abstract void warn( Throwable t, String message, Object... params ); /** * Return whether messages at the INFORMATION level are being logged. * * @return true if INFORMATION log messages are currently being logged, or false otherwise. */ public abstract boolean isInfoEnabled(); /** * Return whether messages at the WARNING level are being logged. * * @return true if WARNING log messages are currently being logged, or false otherwise. */ public abstract boolean isWarnEnabled(); /** * Return whether messages at the ERROR level are being logged. * * @return true if ERROR log messages are currently being logged, or false otherwise. */ public abstract boolean isErrorEnabled(); /** * Return whether messages at the DEBUG level are being logged. * * @return true if DEBUG log messages are currently being logged, or false otherwise. */ public abstract boolean isDebugEnabled(); /** * Return whether messages at the TRACE level are being logged. * * @return true if TRACE log messages are currently being logged, or false otherwise. */ public abstract boolean isTraceEnabled(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy