Lines Matching refs:log

52  * setting the system property sun.rmi.log.useOld to true.
56 * logging. If the java.util.logging API is used and RMI system log
66 /** Logger re-definition of old RMI log values */
70 /* selects log implementation */
76 "sun.rmi.log.useOld"))).booleanValue();
85 public abstract void log(Level level, String message);
86 public abstract void log(Level level, String message, Throwable thrown);
97 /* access log objects */
100 * Access log for a tri-state system property.
102 * Need to first convert override value to a log level, taking
112 * log will never log messages. This permits new logs that only
156 * Factory to create Log objects which deliver log messages to the
177 * Class specialized to log messages to the java.util.logging API
196 /* logger to which log messages are written */
225 public void log(Level level, String message) {
233 public void log(Level level, String message, Throwable thrown) {
274 * Subclass of StreamHandler for redirecting log output. flush
293 * PrintStream which forwards log messages to the logger. Class
299 /** logger where output of this log is sent */
321 /* write the converted bytes of the log message */
350 * Factory to create Log objects which deliver log messages to the
356 /* create a new LogStreamLog for the specified log */
362 stream = LogStream.log(oldLogName);
369 * Class specialized to log messages to the
373 /** Log stream to which log messages are written */
376 /** the level of the log as set by associated property */
381 /* if the stream or level is null, dont log any
393 public void log(Level messageLevel, String message) {
401 public void log(Level level, String message, Throwable thrown) {
433 * Mimic old log messages that only contain unqualified names.
446 * Obtain class and method names of code calling a log method.