POILoggerpublic abstract class POILogger extends Object A logger interface 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. |
Fields Summary |
---|
public static final int | DEBUG | public static final int | INFO | public static final int | WARN | public static final int | ERROR | public static final int | FATAL |
Constructors Summary |
---|
POILogger()package scope so it cannot be instantiated outside of the util
package. You need a POILogger? Go to the POILogFactory for one
|
Methods Summary |
---|
public abstract boolean | check(int level)Check if a logger is enabled to log at the specified level
| private void | commonLogFormatted(int level, java.lang.String message, java.lang.Object[] unflatParams)
if (check(level))
{
Object[] params = flattenArrays(unflatParams);
if (params[ params.length - 1 ] instanceof Throwable)
{
log(level, StringUtil.format(message, params),
( Throwable ) params[ params.length - 1 ]);
}
else
{
log(level, StringUtil.format(message, params));
}
}
| private java.lang.Object[] | flattenArrays(java.lang.Object[] objects)Flattens any contained objects. Only tranverses one level deep.
List results = new ArrayList();
for (int i = 0; i < objects.length; i++)
{
results.addAll(objectToObjectArray(objects[ i ]));
}
return ( Object [] ) results.toArray(new Object[ results.size() ]);
| public abstract void | initialize(java.lang.String cat)
| public void | log(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.
if (check(level))
{
log(level,
new StringBuffer(112).append(obj1).append(obj2)
.append(obj3).append(obj4).append(obj5).append(obj6)
.append(obj7));
}
| public void | log(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.
if (check(level))
{
log(level,
new StringBuffer(128).append(obj1).append(obj2)
.append(obj3).append(obj4).append(obj5).append(obj6)
.append(obj7).append(obj8));
}
| public void | log(int level, java.lang.Object obj1, java.lang.Throwable exception)Log a message
log(level , obj1, exception);
| public void | log(int level, java.lang.Object obj1, java.lang.Object obj2, java.lang.Throwable exception)Log a message. Lazily appends Object parameters together.
if (check(level))
{
log(level, new StringBuffer(32).append(obj1).append(obj2),
exception);
}
| public void | log(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.
if (check(level))
{
log(level, new StringBuffer(48).append(obj1).append(obj2)
.append(obj3), exception);
}
| public void | log(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.
if (check(level))
{
log(level, new StringBuffer(64).append(obj1).append(obj2)
.append(obj3).append(obj4), exception);
}
| public void | log(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.
if (check(level))
{
log(level, new StringBuffer(80).append(obj1).append(obj2)
.append(obj3).append(obj4).append(obj5), exception);
}
| public void | log(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.
if (check(level))
{
log(level , new StringBuffer(96).append(obj1)
.append(obj2).append(obj3).append(obj4).append(obj5)
.append(obj6), exception);
}
| public void | log(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.
if (check(level))
{
log(level, new StringBuffer(112).append(obj1).append(obj2)
.append(obj3).append(obj4).append(obj5).append(obj6)
.append(obj7), exception);
}
| public void | log(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.
if (check(level))
{
log(level, new StringBuffer(128).append(obj1).append(obj2)
.append(obj3).append(obj4).append(obj5).append(obj6)
.append(obj7).append(obj8), exception);
}
| public abstract void | log(int level, java.lang.Object obj1)
| public void | log(int level, java.lang.Object obj1, java.lang.Object obj2)Log a message. Lazily appends Object parameters together.
if (check(level))
{
log(level, new StringBuffer(32).append(obj1).append(obj2));
}
| public void | log(int level, java.lang.Object obj1, java.lang.Object obj2, java.lang.Object obj3)Log a message. Lazily appends Object parameters together.
if (check(level))
{
log(level,
new StringBuffer(48).append(obj1).append(obj2)
.append(obj3));
}
| public void | log(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.
if (check(level))
{
log(level,
new StringBuffer(64).append(obj1).append(obj2)
.append(obj3).append(obj4));
}
| public void | log(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.
if (check(level))
{
log(level,
new StringBuffer(80).append(obj1).append(obj2)
.append(obj3).append(obj4).append(obj5));
}
| public void | log(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.
if (check(level))
{
log(level ,
new StringBuffer(96).append(obj1).append(obj2)
.append(obj3).append(obj4).append(obj5).append(obj6));
}
| public void | logFormatted(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.
commonLogFormatted(level, message, new Object[]
{
obj1
});
| public void | logFormatted(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.
commonLogFormatted(level, message, new Object[]
{
obj1, obj2
});
| public void | logFormatted(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.
commonLogFormatted(level, message, new Object[]
{
obj1, obj2, obj3
});
| public void | logFormatted(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.
commonLogFormatted(level, message, new Object[]
{
obj1, obj2, obj3, obj4
});
| private java.util.List | objectToObjectArray(java.lang.Object object)
List results = new ArrayList();
if (object instanceof byte [])
{
byte[] array = ( byte [] ) object;
for (int j = 0; j < array.length; j++)
{
results.add(new Byte(array[ j ]));
}
}
if (object instanceof char [])
{
char[] array = ( char [] ) object;
for (int j = 0; j < array.length; j++)
{
results.add(new Character(array[ j ]));
}
}
else if (object instanceof short [])
{
short[] array = ( short [] ) object;
for (int j = 0; j < array.length; j++)
{
results.add(new Short(array[ j ]));
}
}
else if (object instanceof int [])
{
int[] array = ( int [] ) object;
for (int j = 0; j < array.length; j++)
{
results.add(new Integer(array[ j ]));
}
}
else if (object instanceof long [])
{
long[] array = ( long [] ) object;
for (int j = 0; j < array.length; j++)
{
results.add(new Long(array[ j ]));
}
}
else if (object instanceof float [])
{
float[] array = ( float [] ) object;
for (int j = 0; j < array.length; j++)
{
results.add(new Float(array[ j ]));
}
}
else if (object instanceof double [])
{
double[] array = ( double [] ) object;
for (int j = 0; j < array.length; j++)
{
results.add(new Double(array[ j ]));
}
}
else if (object instanceof Object [])
{
Object[] array = ( Object [] ) object;
for (int j = 0; j < array.length; j++)
{
results.add(array[ j ]);
}
}
else
{
results.add(object);
}
return results;
|
|