com.sun.enterprise.naming.util
Class LogOutputStream
java.lang.Object
java.io.OutputStream
com.sun.enterprise.naming.util.LogOutputStream
- All Implemented Interfaces:
- Closeable, Flushable
- Direct Known Subclasses:
- MailLogOutputStream
public class LogOutputStream
- extends OutputStream
Capture output lines and send them to the system error log.
|
Method Summary |
protected void |
log(String msg)
Log the specified message. |
void |
write(byte[] b)
|
void |
write(byte[] b,
int off,
int len)
|
void |
write(int b)
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
logger
protected Logger logger
level
protected Level level
LogOutputStream
public LogOutputStream(String facility)
- Log to the specified facility at the default FINE level.
LogOutputStream
public LogOutputStream(String facility,
Level level)
- Log to the specified facility at the specified level.
write
public void write(int b)
throws IOException
- Specified by:
write in class OutputStream
- Throws:
IOException
write
public void write(byte[] b)
throws IOException
- Overrides:
write in class OutputStream
- Throws:
IOException
write
public void write(byte[] b,
int off,
int len)
throws IOException
- Overrides:
write in class OutputStream
- Throws:
IOException
log
protected void log(String msg)
- Log the specified message.
Can be overridden by subclass to do different logging.
Copyright © 2012 GlassFish Community. All Rights Reserved.