Save This Page
Home » openjdk-7 » java » util » logging » [javadoc | source]
java.util.logging
public class: ConsoleHandler [javadoc | source]
java.lang.Object
   java.util.logging.Handler
      java.util.logging.StreamHandler
         java.util.logging.ConsoleHandler
This Handler publishes log records to System.err. By default the SimpleFormatter is used to generate brief summaries.

Configuration: By default each ConsoleHandler is initialized using the following LogManager configuration properties. If properties are not defined (or have invalid values) then the specified default values are used.

Fields inherited from java.util.logging.Handler:
sealed
Constructor:
 public ConsoleHandler() 
Method from java.util.logging.ConsoleHandler Summary:
close,   publish
Methods from java.util.logging.StreamHandler:
close,   flush,   isLoggable,   publish,   setEncoding,   setOutputStream
Methods from java.util.logging.Handler:
checkAccess,   close,   flush,   getEncoding,   getErrorManager,   getFilter,   getFormatter,   getLevel,   isLoggable,   publish,   reportError,   setEncoding,   setErrorManager,   setFilter,   setFormatter,   setLevel
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from java.util.logging.ConsoleHandler Detail:
 public  void close() 
    Override StreamHandler.close to do a flush but not to close the output stream. That is, we do not close System.err.
 public  void publish(LogRecord record) 
    Publish a LogRecord.

    The logging request was made initially to a Logger object, which initialized the LogRecord and forwarded it here.