org.apache.velocity.runtime.log.LogChute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Liferay SAML OpenSAML Integration
package org.apache.velocity.runtime.log;
/*
* 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.
*/
import org.apache.velocity.runtime.RuntimeServices;
/**
* Base interface that logging systems need to implement. This
* is the blessed descendant of the old LogSystem interface.
*
* @author Jon S. Stevens
* @author Geir Magnusson Jr.
* @author Nathan Bubna
* @version $Id: LogChute.java 685685 2008-08-13 21:43:27Z nbubna $
* @since 1.5
*/
public interface LogChute
{
/** Prefix string for trace messages. */
String TRACE_PREFIX = " [trace] ";
/** Prefix string for debug messages. */
String DEBUG_PREFIX = " [debug] ";
/** Prefix string for info messages. */
String INFO_PREFIX = " [info] ";
/** Prefix string for warn messages. */
String WARN_PREFIX = " [warn] ";
/** Prefix string for error messages. */
String ERROR_PREFIX = " [error] ";
/** ID for trace messages. */
int TRACE_ID = -1;
/** ID for debug messages. */
int DEBUG_ID = 0;
/** ID for info messages. */
int INFO_ID = 1;
/** ID for warning messages. */
int WARN_ID = 2;
/** ID for error messages. */
int ERROR_ID = 3;
/**
* Initializes this LogChute.
* @param rs
* @throws Exception
*/
void init(RuntimeServices rs) throws Exception;
/**
* Send a log message from Velocity.
* @param level
* @param message
*/
void log(int level, String message);
/**
* Send a log message from Velocity along with an exception or error
* @param level
* @param message
* @param t
*/
void log(int level, String message, Throwable t);
/**
* Tell whether or not a log level is enabled.
* @param level
* @return True if a level is enabled.
*/
boolean isLevelEnabled(int level);
}