org.apache.log

Class LogKit

public final class LogKit extends Object

Deprecated: Instead of using LogKit directly use the facilities in code itself

The LogKit provides the access to static methods to manipulate the logging sub-system

Author: Peter Donald

Method Summary
static ContextStackgetCurrentContext()
Get the Current ContextStack.
static LoggergetLoggerFor(String category)
Retrieve a logger for named category.
static PrioritygetPriorityForName(String priority)
Retrieve a Priority value for the string parameter.
static voidlog(String message, Throwable t)
Logs an error message to error handler.
static voidlog(String message)
Logs an error message to error handler.
static voidsetDefaultLogTarget(LogTarget defaultLogTarget)
Sets the default LogTarget for the default logger.

Method Detail

getCurrentContext

public static ContextStack getCurrentContext()

Deprecated: Use ContextStack.getCurrentContext() instead

Get the Current ContextStack. This returns a ContextStack associated with current thread. If the thread doesn't have a ContextStack associated with it then a new ContextStack is created with the name of thread as base context.

Returns: the current ContextStack

getLoggerFor

public static Logger getLoggerFor(String category)

Deprecated: Use Hierarchy.getDefaultHierarchy().getLoggerFor() instead

Retrieve a logger for named category.

Parameters: category the context

Returns: the Logger

getPriorityForName

public static Priority getPriorityForName(String priority)

Deprecated: Use Priority.getPriorityForName() instead

Retrieve a Priority value for the string parameter.

Parameters: priority the priority

Returns: the descriptive string

log

public static void log(String message, Throwable t)

Deprecated: Use Hierarchy.getDefaultHierarchy().log() instead

Logs an error message to error handler.

log

public static void log(String message)

Deprecated: Use Hierarchy.getDefaultHierarchy().log() instead

Logs an error message to error handler.

setDefaultLogTarget

public static void setDefaultLogTarget(LogTarget defaultLogTarget)

Deprecated: Use Hierarchy.getDefaultHierarchy().setDefaultLogTarget() instead

Sets the default LogTarget for the default logger.