boolean | checkError() - Flush the stream and check its error state.
|
void | close() - It writes the buffer if it is not empty
|
void | flush() - It writes the buffer if it is not empty
|
int | getLevel()
|
Logger | getLogger() - Retrieves the logger instance used
|
LoggerFactory | getLoggerFactory() - Retrieves the logger factory instance used
|
void | print(Object x) - Print an object in the buffer.
|
void | print(String x) - Print a string in the buffer.
|
void | print(boolean x) - Print a boolean value in the buffer.
|
void | print(char x) - Print a character in the buffer.
|
void | print(char[] x) - Print an array of characters in the buffer.
|
void | print(double x) - Print a double-precision floating-point number in the buffer.
|
void | print(float x) - Print a floating-point number in the buffer.
|
void | print(int x) - Print an integer in the buffer.
|
void | print(long x) - Print a long integer in the buffer.
|
void | println() - Send the buffer to the logger
|
void | println(Object x) - Send the buffer and an object to the logger
|
void | println(String x) - Send the buffer and a String to the logger
|
void | println(boolean x) - Send the buffer and a boolean value to the logger
|
void | println(char x) - Send the buffer and a character to the logger
|
void | println(char[] x) - Send the buffer and an array of characters to the logger
|
void | println(double x) - Send the buffer and a a double-precision floating-point number to the
logger.
|
void | println(float x) - Send the buffer and a floating-point number to the logger
|
void | println(int x) - Send the buffer and an integer to the logger
|
void | println(long x) - Send the buffer and a long integer number to the logger
|
protected void | setError() - Indicate that an error has occurred.
|
void | setLevel(int level)
|
void | setLogger(Logger logger) - Assigns the logger instance to use
|
void | setLoggerFactory(LoggerFactory lf) - Assigns the logger factory instance to use
|
void | write(String s) - Write a string in the buffer.
|
void | write(String s, int off, int len) - Write a portion of a string in the buffer.
|
void | write(char[] buf) - Write an array of characters in the buffer.
|
void | write(char[] buf, int off, int len) - Write a portion of an array of characters in the buffer.
|
void | write(int c) - Write a single character in the buffer.
|