FileDocCategorySizeDatePackage
NullLogger.javaAPI DocApache Poi 3.0.117077Mon Jan 01 12:39:42 GMT 2007org.apache.poi.util

NullLogger

public class NullLogger extends POILogger
A logger class that strives to make it as easy as possible for developers to write log calls, while simultaneously making those calls as cheap as possible by performing lazy evaluation of the log message.

author
Marc Johnson (mjohnson at apache dot org)
author
Glen Stampoultzis (glens at apache.org)
author
Nicola Ken Barozzi (nicolaken at apache.org)

Fields Summary
Constructors Summary
Methods Summary
public booleancheck(int level)
Check if a logger is enabled to log at the specified level

param
level One of DEBUG, INFO, WARN, ERROR, FATAL

       return false;
    
public voidinitialize(java.lang.String cat)

       //do nothing    
    
public voidlog(int level, java.lang.Object obj1, java.lang.Object obj2, java.lang.Object obj3, java.lang.Object obj4, java.lang.Object obj5, java.lang.Object obj6, java.lang.Object obj7, java.lang.Object obj8)
Log a message. Lazily appends Object parameters together.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
obj1 first Object to place in the message
param
obj2 second Object to place in the message
param
obj3 third Object to place in the message
param
obj4 fourth Object to place in the message
param
obj5 fifth Object to place in the message
param
obj6 sixth Object to place in the message
param
obj7 seventh Object to place in the message
param
obj8 eighth Object to place in the message

       //do nothing
    
public voidlog(int level, java.lang.Object obj1, java.lang.Throwable exception)
Log a message

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
obj1 The object to log. This is converted to a string.
param
exception An exception to be logged

       //do nothing
    
public voidlog(int level, java.lang.Object obj1, java.lang.Object obj2, java.lang.Throwable exception)
Log a message. Lazily appends Object parameters together.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
obj1 first Object to place in the message
param
obj2 second Object to place in the message
param
exception An exception to be logged

       //do nothing
    
public voidlog(int level, java.lang.Object obj1, java.lang.Object obj2, java.lang.Object obj3, java.lang.Throwable exception)
Log a message. Lazily appends Object parameters together.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
obj1 first Object to place in the message
param
obj2 second Object to place in the message
param
obj3 third object to place in the message
param
exception An error message to be logged

       //do nothing
    
public voidlog(int level, java.lang.Object obj1, java.lang.Object obj2, java.lang.Object obj3, java.lang.Object obj4, java.lang.Throwable exception)
Log a message. Lazily appends Object parameters together.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
obj1 first Object to place in the message
param
obj2 second Object to place in the message
param
obj3 third object to place in the message
param
obj4 fourth object to place in the message
param
exception An exception to be logged

       //do nothing
    
public voidlog(int level, java.lang.Object obj1, java.lang.Object obj2, java.lang.Object obj3, java.lang.Object obj4, java.lang.Object obj5, java.lang.Throwable exception)
Log a message. Lazily appends Object parameters together.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
obj1 first Object to place in the message
param
obj2 second Object to place in the message
param
obj3 third object to place in the message
param
obj4 fourth object to place in the message
param
obj5 fifth object to place in the message
param
exception An exception to be logged

       //do nothing
    
public voidlog(int level, java.lang.Object obj1, java.lang.Object obj2, java.lang.Object obj3, java.lang.Object obj4, java.lang.Object obj5, java.lang.Object obj6, java.lang.Throwable exception)
Log a message. Lazily appends Object parameters together.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
obj1 first Object to place in the message
param
obj2 second Object to place in the message
param
obj3 third object to place in the message
param
obj4 fourth object to place in the message
param
obj5 fifth object to place in the message
param
obj6 sixth object to place in the message
param
exception An exception to be logged

       //do nothing
    
public voidlog(int level, java.lang.Object obj1, java.lang.Object obj2, java.lang.Object obj3, java.lang.Object obj4, java.lang.Object obj5, java.lang.Object obj6, java.lang.Object obj7, java.lang.Throwable exception)
Log a message. Lazily appends Object parameters together.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
obj1 first Object to place in the message
param
obj2 second Object to place in the message
param
obj3 third object to place in the message
param
obj4 fourth object to place in the message
param
obj5 fifth object to place in the message
param
obj6 sixth object to place in the message
param
obj7 seventh object to place in the message
param
exception An exception to be logged

      //do nothing
    
public voidlog(int level, java.lang.Object obj1, java.lang.Object obj2, java.lang.Object obj3, java.lang.Object obj4, java.lang.Object obj5, java.lang.Object obj6, java.lang.Object obj7, java.lang.Object obj8, java.lang.Throwable exception)
Log a message. Lazily appends Object parameters together.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
obj1 first Object to place in the message
param
obj2 second Object to place in the message
param
obj3 third object to place in the message
param
obj4 fourth object to place in the message
param
obj5 fifth object to place in the message
param
obj6 sixth object to place in the message
param
obj7 seventh object to place in the message
param
obj8 eighth object to place in the message
param
exception An exception to be logged

       //do nothing
    
public voidlog(int level, java.lang.Object obj1)
Log a message

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
obj1 The object to log.

        //do nothing
    
public voidlog(int level, java.lang.Object obj1, java.lang.Object obj2)
Log a message. Lazily appends Object parameters together.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
obj1 first object to place in the message
param
obj2 second object to place in the message

       //do nothing
    
public voidlog(int level, java.lang.Object obj1, java.lang.Object obj2, java.lang.Object obj3)
Log a message. Lazily appends Object parameters together.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
obj1 first Object to place in the message
param
obj2 second Object to place in the message
param
obj3 third Object to place in the message

       //do nothing
    
public voidlog(int level, java.lang.Object obj1, java.lang.Object obj2, java.lang.Object obj3, java.lang.Object obj4)
Log a message. Lazily appends Object parameters together.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
obj1 first Object to place in the message
param
obj2 second Object to place in the message
param
obj3 third Object to place in the message
param
obj4 fourth Object to place in the message

       //do nothing
    
public voidlog(int level, java.lang.Object obj1, java.lang.Object obj2, java.lang.Object obj3, java.lang.Object obj4, java.lang.Object obj5)
Log a message. Lazily appends Object parameters together.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
obj1 first Object to place in the message
param
obj2 second Object to place in the message
param
obj3 third Object to place in the message
param
obj4 fourth Object to place in the message
param
obj5 fifth Object to place in the message

       //do nothing
    
public voidlog(int level, java.lang.Object obj1, java.lang.Object obj2, java.lang.Object obj3, java.lang.Object obj4, java.lang.Object obj5, java.lang.Object obj6)
Log a message. Lazily appends Object parameters together.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
obj1 first Object to place in the message
param
obj2 second Object to place in the message
param
obj3 third Object to place in the message
param
obj4 fourth Object to place in the message
param
obj5 fifth Object to place in the message
param
obj6 sixth Object to place in the message

       //do nothing
    
public voidlog(int level, java.lang.Object obj1, java.lang.Object obj2, java.lang.Object obj3, java.lang.Object obj4, java.lang.Object obj5, java.lang.Object obj6, java.lang.Object obj7)
Log a message. Lazily appends Object parameters together.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
obj1 first Object to place in the message
param
obj2 second Object to place in the message
param
obj3 third Object to place in the message
param
obj4 fourth Object to place in the message
param
obj5 fifth Object to place in the message
param
obj6 sixth Object to place in the message
param
obj7 seventh Object to place in the message

       //do nothing
    
public voidlogFormatted(int level, java.lang.String message, java.lang.Object obj1)
Logs a formated message. The message itself may contain % characters as place holders. This routine will attempt to match the placeholder by looking at the type of parameter passed to obj1.

If the parameter is an array, it traverses the array first and matches parameters sequentially against the array items. Otherwise the parameters after message are matched in order.

If the place holder matches against a number it is printed as a whole number. This can be overridden by specifying a precision in the form %n.m where n is the padding for the whole part and m is the number of decimal places to display. n can be excluded if desired. n and m may not be more than 9.

If the last parameter (after flattening) is a Throwable it is logged specially.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
message The message to log.
param
obj1 The first object to match against.

       //do nothing
    
public voidlogFormatted(int level, java.lang.String message, java.lang.Object obj1, java.lang.Object obj2)
Logs a formated message. The message itself may contain % characters as place holders. This routine will attempt to match the placeholder by looking at the type of parameter passed to obj1.

If the parameter is an array, it traverses the array first and matches parameters sequentially against the array items. Otherwise the parameters after message are matched in order.

If the place holder matches against a number it is printed as a whole number. This can be overridden by specifying a precision in the form %n.m where n is the padding for the whole part and m is the number of decimal places to display. n can be excluded if desired. n and m may not be more than 9.

If the last parameter (after flattening) is a Throwable it is logged specially.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
message The message to log.
param
obj1 The first object to match against.
param
obj2 The second object to match against.

       //do nothing
    
public voidlogFormatted(int level, java.lang.String message, java.lang.Object obj1, java.lang.Object obj2, java.lang.Object obj3)
Logs a formated message. The message itself may contain % characters as place holders. This routine will attempt to match the placeholder by looking at the type of parameter passed to obj1.

If the parameter is an array, it traverses the array first and matches parameters sequentially against the array items. Otherwise the parameters after message are matched in order.

If the place holder matches against a number it is printed as a whole number. This can be overridden by specifying a precision in the form %n.m where n is the padding for the whole part and m is the number of decimal places to display. n can be excluded if desired. n and m may not be more than 9.

If the last parameter (after flattening) is a Throwable it is logged specially.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
message The message to log.
param
obj1 The first object to match against.
param
obj2 The second object to match against.
param
obj3 The third object to match against.

       //do nothing
    
public voidlogFormatted(int level, java.lang.String message, java.lang.Object obj1, java.lang.Object obj2, java.lang.Object obj3, java.lang.Object obj4)
Logs a formated message. The message itself may contain % characters as place holders. This routine will attempt to match the placeholder by looking at the type of parameter passed to obj1.

If the parameter is an array, it traverses the array first and matches parameters sequentially against the array items. Otherwise the parameters after message are matched in order.

If the place holder matches against a number it is printed as a whole number. This can be overridden by specifying a precision in the form %n.m where n is the padding for the whole part and m is the number of decimal places to display. n can be excluded if desired. n and m may not be more than 9.

If the last parameter (after flattening) is a Throwable it is logged specially.

param
level One of DEBUG, INFO, WARN, ERROR, FATAL
param
message The message to log.
param
obj1 The first object to match against.
param
obj2 The second object to match against.
param
obj3 The third object to match against.
param
obj4 The forth object to match against.

       //do nothing