Package com.sun.mail.util
Class LogOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- com.sun.mail.util.LogOutputStream
-
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
public class LogOutputStream extends OutputStream
Capture output lines and send them to the mail logger.
-
-
Field Summary
Fields Modifier and Type Field Description protected Levellevelprotected MailLoggerlogger
-
Constructor Summary
Constructors Constructor Description LogOutputStream(MailLogger logger)Log to the specified logger.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidlog(String msg)Log the specified message.voidwrite(byte[] b)voidwrite(byte[] b, int off, int len)voidwrite(int b)-
Methods inherited from class java.io.OutputStream
close, flush, nullOutputStream
-
-
-
-
Field Detail
-
logger
protected MailLogger logger
-
level
protected Level level
-
-
Constructor Detail
-
LogOutputStream
public LogOutputStream(MailLogger logger)
Log to the specified logger.- Parameters:
logger- the MailLogger
-
-
Method Detail
-
write
public void write(int b) throws IOException- Specified by:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] b) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] b, int off, int len) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
log
protected void log(String msg)
Log the specified message. Can be overridden by subclass to do different logging.- Parameters:
msg- the message to log
-
-