org.apache.ws.jaxme.logging

Interface Logger

public interface Logger

The Logger interface describes an object which is able to log a message.

Author: Jochen Wiedmann

Method Summary
voidentering(String pMethodName, Object[] pDetails)

Logs the message that a method is entered.

voidentering(String pMethodName)

Logs the message that a method is entered.

voidentering(String pMethodName, Object pDetails1)

Logs the message that a method is entered.

voiderror(String pMethodName, String pMsg, Object[] pDetails)

Logs the given message with error level.

voiderror(String pMethodName, String pMsg)

Logs the given message with error level.

voiderror(String pMethodName, String pMsg, Object pDetails)

Logs the given message with error level.

voidexiting(String pMethodName, Object[] pDetails)

Logs the message that a method is exiting.

voidexiting(String pMethodName)

Logs the message that a method is exiting.

voidexiting(String pMethodName, Object pDetails1)

Logs the message that a method is exiting.

voidfine(String pMethodName, String pMsg, Object[] pDetails)

Logs the given message with fine level.

voidfine(String pMethodName, String pMsg)

Logs the given message with fine level.

voidfine(String pMethodName, String pMsg, Object pDetails)

Logs the given message with fine level.

voidfiner(String pMethodName, String pMsg, Object[] pDetails)

Logs the given message with finer level.

voidfiner(String pMethodName, String pMsg)

Logs the given message with finer level.

voidfiner(String pMethodName, String pMsg, Object pDetails)

Logs the given message with finer level.

voidfinest(String pMethodName, String pMsg, Object[] pDetails)

Logs the given message with finest level.

voidfinest(String pMethodName, String pMsg)

Logs the given message with finest level.

voidfinest(String pMethodName, String pMsg, Object pDetails)

Logs the given message with finest level.

voidinfo(String pMethodName, String pMsg, Object[] pDetails)

Logs the given message with info level.

voidinfo(String pMethodName, String pMsg)

Logs the given message with info level.

voidinfo(String pMethodName, String pMsg, Object pDetails)

Logs the given message with info level.

booleanisErrorEnabled()

Returns whether error logging is enabled.

booleanisFineEnabled()

Returns whether fine logging is enabled.

booleanisFinerEnabled()

Returns whether fine logging is enabled.

booleanisFinestEnabled()

Returns whether finest logging is enabled.

booleanisInfoEnabled()

Returns whether info logging is enabled.

booleanisWarnEnabled()

Returns whether warning logging is enabled.

voidthrowing(String pMethodName, Throwable pThrowable)

Logs the given Throwable.

voidwarn(String pMethodName, String pMsg, Object[] pDetails)

Logs the given message with warning level.

voidwarn(String pMethodName, String pMsg)

Logs the given message with warning level.

voidwarn(String pMethodName, String pMsg, Object pDetails)

Logs the given message with warning level.

Method Detail

entering

public void entering(String pMethodName, Object[] pDetails)

Logs the message that a method is entered.

entering

public void entering(String pMethodName)

Logs the message that a method is entered.

entering

public void entering(String pMethodName, Object pDetails1)

Logs the message that a method is entered.

error

public void error(String pMethodName, String pMsg, Object[] pDetails)

Logs the given message with error level.

error

public void error(String pMethodName, String pMsg)

Logs the given message with error level.

error

public void error(String pMethodName, String pMsg, Object pDetails)

Logs the given message with error level.

exiting

public void exiting(String pMethodName, Object[] pDetails)

Logs the message that a method is exiting.

exiting

public void exiting(String pMethodName)

Logs the message that a method is exiting.

exiting

public void exiting(String pMethodName, Object pDetails1)

Logs the message that a method is exiting.

fine

public void fine(String pMethodName, String pMsg, Object[] pDetails)

Logs the given message with fine level.

fine

public void fine(String pMethodName, String pMsg)

Logs the given message with fine level.

fine

public void fine(String pMethodName, String pMsg, Object pDetails)

Logs the given message with fine level.

finer

public void finer(String pMethodName, String pMsg, Object[] pDetails)

Logs the given message with finer level.

finer

public void finer(String pMethodName, String pMsg)

Logs the given message with finer level.

finer

public void finer(String pMethodName, String pMsg, Object pDetails)

Logs the given message with finer level.

finest

public void finest(String pMethodName, String pMsg, Object[] pDetails)

Logs the given message with finest level.

finest

public void finest(String pMethodName, String pMsg)

Logs the given message with finest level.

finest

public void finest(String pMethodName, String pMsg, Object pDetails)

Logs the given message with finest level.

info

public void info(String pMethodName, String pMsg, Object[] pDetails)

Logs the given message with info level.

info

public void info(String pMethodName, String pMsg)

Logs the given message with info level.

info

public void info(String pMethodName, String pMsg, Object pDetails)

Logs the given message with info level.

isErrorEnabled

public boolean isErrorEnabled()

Returns whether error logging is enabled.

isFineEnabled

public boolean isFineEnabled()

Returns whether fine logging is enabled.

isFinerEnabled

public boolean isFinerEnabled()

Returns whether fine logging is enabled.

isFinestEnabled

public boolean isFinestEnabled()

Returns whether finest logging is enabled.

isInfoEnabled

public boolean isInfoEnabled()

Returns whether info logging is enabled.

isWarnEnabled

public boolean isWarnEnabled()

Returns whether warning logging is enabled.

throwing

public void throwing(String pMethodName, Throwable pThrowable)

Logs the given Throwable.

warn

public void warn(String pMethodName, String pMsg, Object[] pDetails)

Logs the given message with warning level.

warn

public void warn(String pMethodName, String pMsg)

Logs the given message with warning level.

warn

public void warn(String pMethodName, String pMsg, Object pDetails)

Logs the given message with warning level.