Kieker 1.6

kieker.common.logging
Class LogImplWebguiLogging

java.lang.Object
  extended by kieker.common.logging.LogImplWebguiLogging
All Implemented Interfaces:
Log

public final class LogImplWebguiLogging
extends Object
implements Log

This is a simple logger for the Kieker WebGUI. It stores the log messages within a buffer of a static size. If the buffer is full, the oldest entry will be removed for new entries. As the entries have to be accessible from outside, the queues are stored statically.

Author:
Jan Waller, Nils Christian Ehmke

Method Summary
 void clear()
          Clears the saved entries within this logger.
 void debug(String message)
           Log a message with debug log level.
 void debug(String message, Throwable t)
           Log an error with debug log level.
 void error(String message)
           Log a message with error log level.
 void error(String message, Throwable t)
           Log an error with error log level.
static String[] getEntries(String name)
          Delivers an array with all entries of the logger with the given name.
 void info(String message)
           Log a message with info log level.
 void info(String message, Throwable t)
           Log an error with info log level.
 boolean isDebugEnabled()
           Is debug logging currently enabled?
 void warn(String message)
           Log a message with warn log level.
 void warn(String message, Throwable t)
           Log an error with warn log level.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

isDebugEnabled

public boolean isDebugEnabled()
Description copied from interface: Log

Is debug logging currently enabled?

Call this method to prevent having to perform expensive operations (for example, String concatenation) when the log level is more than debug.

Specified by:
isDebugEnabled in interface Log
Returns:
true if debug is enabled in the underlying logger.

debug

public void debug(String message)
Description copied from interface: Log

Log a message with debug log level.

Specified by:
debug in interface Log
Parameters:
message - log this message

debug

public void debug(String message,
                  Throwable t)
Description copied from interface: Log

Log an error with debug log level.

Specified by:
debug in interface Log
Parameters:
message - log this message
t - log this cause

info

public void info(String message)
Description copied from interface: Log

Log a message with info log level.

Specified by:
info in interface Log
Parameters:
message - log this message

info

public void info(String message,
                 Throwable t)
Description copied from interface: Log

Log an error with info log level.

Specified by:
info in interface Log
Parameters:
message - log this message
t - log this cause

warn

public void warn(String message)
Description copied from interface: Log

Log a message with warn log level.

Specified by:
warn in interface Log
Parameters:
message - log this message

warn

public void warn(String message,
                 Throwable t)
Description copied from interface: Log

Log an error with warn log level.

Specified by:
warn in interface Log
Parameters:
message - log this message
t - log this cause

error

public void error(String message)
Description copied from interface: Log

Log a message with error log level.

Specified by:
error in interface Log
Parameters:
message - log this message

error

public void error(String message,
                  Throwable t)
Description copied from interface: Log

Log an error with error log level.

Specified by:
error in interface Log
Parameters:
message - log this message
t - log this cause

clear

public void clear()
Clears the saved entries within this logger.


getEntries

public static String[] getEntries(String name)
Delivers an array with all entries of the logger with the given name.

Parameters:
name - The name of the logger.
Returns:
The stored entries of the logger. If a logger with the given name doesn't exist, an empty array will be returned.

Kieker 1.6

Copyright 2012 Kieker Project, http://kieker-monitoring.net