- java.lang.Object
-
- java.io.OutputStream
-
- java.io.FilterOutputStream
-
- java.io.PrintStream
-
- java.rmi.server.LogStream
-
- All Implemented Interfaces:
- Closeable, Flushable, Appendable, AutoCloseable
Deprecated.no replacement
@Deprecated public class LogStream extends PrintStream
LogStream
provides a mechanism for logging errors that are of possible interest to those monitoring a system.- Since:
- JDK1.1
-
-
Field Summary
Fields Modifier and Type Field and Description static int
BRIEF
Deprecated.log level constant (brief logging).static int
SILENT
Deprecated.log level constant (no logging).static int
VERBOSE
Deprecated.log level constant (verbose logging).-
Fields inherited from class java.io.FilterOutputStream
out
-
-
Method Summary
Methods Modifier and Type Method and Description static PrintStream
getDefaultStream()
Deprecated.no replacementOutputStream
getOutputStream()
Deprecated.no replacementstatic LogStream
log(String name)
Deprecated.no replacementstatic int
parseLevel(String s)
Deprecated.no replacementstatic void
setDefaultStream(PrintStream newDefault)
Deprecated.no replacementvoid
setOutputStream(OutputStream out)
Deprecated.no replacementString
toString()
Deprecated.no replacementvoid
write(byte[] b, int off, int len)
Deprecated.no replacementvoid
write(int b)
Deprecated.no replacement-
Methods inherited from class java.io.PrintStream
append, append, append, checkError, clearError, close, flush, format, format, print, print, print, print, print, print, print, print, print, printf, printf, println, println, println, println, println, println, println, println, println, println, setError
-
Methods inherited from class java.io.FilterOutputStream
write
-
-
-
-
Field Detail
-
SILENT
public static final int SILENT
Deprecated.log level constant (no logging).- See Also:
- Constant Field Values
-
BRIEF
public static final int BRIEF
Deprecated.log level constant (brief logging).- See Also:
- Constant Field Values
-
VERBOSE
public static final int VERBOSE
Deprecated.log level constant (verbose logging).- See Also:
- Constant Field Values
-
-
Method Detail
-
log
@Deprecated public static LogStream log(String name)
Deprecated. no replacementReturn the LogStream identified by the given name. If a log corresponding to "name" does not exist, a log using the default stream is created.- Parameters:
name
- name identifying the desired LogStream- Returns:
- log associated with given name
- Since:
- JDK1.1
-
getDefaultStream
@Deprecated public static PrintStream getDefaultStream()
Deprecated. no replacementReturn the current default stream for new logs.- Returns:
- default log stream
- Since:
- JDK1.1
- See Also:
setDefaultStream(java.io.PrintStream)
-
setDefaultStream
@Deprecated public static void setDefaultStream(PrintStream newDefault)
Deprecated. no replacementSet the default stream for new logs.- Parameters:
newDefault
- new default log stream- Since:
- JDK1.1
- See Also:
getDefaultStream()
-
getOutputStream
@Deprecated public OutputStream getOutputStream()
Deprecated. no replacementReturn the current stream to which output from this log is sent.- Returns:
- output stream for this log
- Since:
- JDK1.1
- See Also:
setOutputStream(java.io.OutputStream)
-
setOutputStream
@Deprecated public void setOutputStream(OutputStream out)
Deprecated. no replacementSet the stream to which output from this log is sent.- Parameters:
out
- new output stream for this log- Since:
- JDK1.1
- See Also:
getOutputStream()
-
write
@Deprecated public void write(int b)
Deprecated. no replacementWrite 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.- Overrides:
write
in classPrintStream
- Parameters:
b
- The byte to be written- Since:
- JDK1.1
- See Also:
PrintStream.print(char)
,PrintStream.println(char)
-
write
@Deprecated public void write(byte[] b, int off, int len)
Deprecated. no replacementWrite a subarray of bytes. Pass each through write byte method.- Overrides:
write
in classPrintStream
- Parameters:
b
- A byte arrayoff
- Offset from which to start taking byteslen
- Number of bytes to write- Since:
- JDK1.1
- See Also:
FilterOutputStream.write(int)
-
toString
@Deprecated public String toString()
Deprecated. no replacementReturn log name as string representation.
-
parseLevel
@Deprecated public static int parseLevel(String s)
Deprecated. no replacementConvert a string name of a logging level to its internal integer representation.- Parameters:
s
- name of logging level (e.g., 'SILENT', 'BRIEF', 'VERBOSE')- Returns:
- corresponding integer log level
- Since:
- JDK1.1
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-java/rmi/server/LogStream.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.