net.sf.wraplog
Class WriterLogger
java.lang.Object
  
net.sf.wraplog.AbstractLogger
      
net.sf.wraplog.WriterLogger
- public class WriterLogger
- extends AbstractLogger
  
Logger to log to a Writer, for example a FileWriter or StringWriter.
- Author:
 
  - Thomas Aglassinger
 
- See Also:
 Writer, 
FileWriter, 
StringWriter
 
| 
Method Summary | 
protected  void | 
reallyLog(int logLevel,
          String message,
          Throwable error)
 
          Log a message and optional error details. | 
 
| Methods inherited from class net.sf.wraplog.AbstractLogger | 
checkLevel, debug, debug, debug, debug, error, error, error, error, getLevel, getLoggedMessageCount, handleError, handleError, info, info, info, info, isDebugEnabled, isEnabled, isErrorEnabled, isInfoEnabled, isWarnEnabled, log, log, log, log, setLevel, setLoggingErrorHandler, warn, warn, warn, warn | 
 
| Methods inherited from class java.lang.Object | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
WriterLogger
public WriterLogger(Writer newWriter)
reallyLog
protected void reallyLog(int logLevel,
                         String message,
                         Throwable error)
                  throws IOException
- Description copied from class: 
AbstractLogger 
- Log a message and optional error details.
- Specified by:
 reallyLog in class AbstractLogger
 
- Parameters:
 logLevel - one of: Level.DEBUG, Level.INFO, Level.WARN, Level.ERRORmessage - the actual message; this will never be nullerror - an error that is related to the message; unless
            null, the name and stack trace of the error
            are logged
- Throws:
 IOException