java.lang.Object | ||||
↳ | java.io.OutputStream | |||
↳ | java.io.FilterOutputStream | |||
↳ | java.io.PrintStream | |||
↳ | java.rmi.server.LogStream |
This class is deprecated.
no replacement
LogStream
provides a mechanism for logging errors that are
of possible interest to those monitoring a system.
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
int | BRIEF | log level constant (brief logging). | |||||||||
int | SILENT | log level constant (no logging). | |||||||||
int | VERBOSE | log level constant (verbose logging). |
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
This method is deprecated.
no replacement
| |||||||||||
This method is deprecated.
no replacement
| |||||||||||
This method is deprecated.
no replacement
| |||||||||||
This method is deprecated.
no replacement
| |||||||||||
This method is deprecated.
no replacement
| |||||||||||
This method is deprecated.
no replacement
| |||||||||||
This method is deprecated.
no replacement
| |||||||||||
This method is deprecated.
no replacement
| |||||||||||
This method is deprecated.
no replacement
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
log level constant (brief logging).
log level constant (no logging).
log level constant (verbose logging).
This method is deprecated.
no replacement
Return the current default stream for new logs.
This method is deprecated.
no replacement
Return the current stream to which output from this log is sent.
This method is deprecated.
no replacement
Return the LogStream identified by the given name. If a log corresponding to "name" does not exist, a log using the default stream is created.
name | name identifying the desired LogStream |
---|
This method is deprecated.
no replacement
Convert a string name of a logging level to its internal integer representation.
s | name of logging level (e.g., 'SILENT', 'BRIEF', 'VERBOSE') |
---|
This method is deprecated.
no replacement
Set the default stream for new logs.
newDefault | new default log stream |
---|
This method is deprecated.
no replacement
Set the stream to which output from this log is sent.
out | new output stream for this log |
---|
This method is deprecated.
no replacement
Return log name as string representation.
This method is deprecated.
no replacement
Write a subarray of bytes. Pass each through write byte method.
b | A byte array |
---|---|
off | Offset from which to start taking bytes |
len | Number of bytes to write |
This method is deprecated.
no replacement
Write a byte of data to the stream. If it is not a newline, then the byte is appended to the internal buffer. If it is a newline, then the currently buffered line is sent to the log's output stream, prefixed with the appropriate logging information.
b | The byte to be written |
---|