Searched refs:LogRecord (Results 1 - 20 of 20) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/logging/
H A DFilter.java35 * if a given LogRecord should be published. If isLoggable returns
36 * false, the LogRecord will be discarded.
45 * @param record a LogRecord
48 public boolean isLoggable(LogRecord record);
H A DFormatter.java33 * with it. The Formatter takes a LogRecord and converts it to
55 * localized and formatted version of the LogRecord's message field.
62 public abstract String format(LogRecord record);
113 public synchronized String formatMessage(LogRecord record) {
H A DMemoryHandler.java41 * An incoming <tt>LogRecord</tt> has a type that is greater than
47 * <tt>LogRecord</tt> and calls <tt>push</tt> if a record matches some
80 private LogRecord buffer[];
123 buffer = new LogRecord[size];
158 * Store a <tt>LogRecord</tt> in an internal buffer.
172 public synchronized void publish(LogRecord record) {
197 LogRecord record = buffer[ix];
228 * Set the <tt>pushLevel</tt>. After a <tt>LogRecord</tt> is copied
256 * <tt>LogRecord</tt> into its internal buffer.
258 * This method checks if the <tt>LogRecord</t
[all...]
H A DLogger.java84 * a LogRecord to describe the logging message. It will then call a
87 * the LogRecord to its output Handlers. By default, loggers also
121 * until a LogRecord is actually written to an external sink.
164 * should delegate operations such as "isLoggable" and "log(LogRecord)"
166 * output, subclasses need only override the log(LogRecord) method.
168 * log(LogRecord) method.
587 * Log a LogRecord.
593 * @param record the LogRecord to be published
595 public void log(LogRecord record) {
604 // Post the LogRecord t
[all...]
H A DConsoleHandler.java96 * Publish a <tt>LogRecord</tt>.
99 * which initialized the <tt>LogRecord</tt> and forwarded it here.
104 public void publish(LogRecord record) {
H A DHandler.java71 * Publish a <tt>LogRecord</tt>.
74 * which initialized the <tt>LogRecord</tt> and forwarded it here.
82 public abstract void publish(LogRecord record);
171 * <tt>LogRecord</tt> should be published or discarded.
271 * Check if this <tt>Handler</tt> would actually log a given <tt>LogRecord</tt>.
273 * This method checks if the <tt>LogRecord</tt> has an appropriate
276 * handler from logging the <tt>LogRecord</tt>. It will return false if
277 * the <tt>LogRecord</tt> is null.
279 * @param record a <tt>LogRecord</tt>
280 * @return true if the <tt>LogRecord</t
[all...]
H A DStreamHandler.java174 * Format and publish a <tt>LogRecord</tt>.
177 * and if the given <tt>LogRecord</tt> has at least the required log level.
183 * If this is the first <tt>LogRecord</tt> to be written to a given
185 * written to the stream before the <tt>LogRecord</tt> is written.
190 public synchronized void publish(LogRecord record) {
219 * Check if this <tt>Handler</tt> would actually log a given <tt>LogRecord</tt>.
221 * This method checks if the <tt>LogRecord</tt> has an appropriate level and
223 * no output stream has been assigned yet or the LogRecord is null.
225 * @param record a <tt>LogRecord</tt>
226 * @return true if the <tt>LogRecord</t
[all...]
H A DSimpleFormatter.java35 * Print a brief summary of the {@code LogRecord} in a human readable
66 * Format the given LogRecord.
72 * The given {@code LogRecord} will be formatted as if by calling:
83 * {@linkplain LogRecord#getMillis event time} of the log record.</li>
90 * returned from the {@link Formatter#formatMessage(LogRecord)}
95 * the {@linkplain LogRecord#getThrown throwable}
140 public synchronized String format(LogRecord record) {
H A DSocketHandler.java62 * <tt>LogRecord</tt> is written.
179 * Format and publish a <tt>LogRecord</tt>.
184 public synchronized void publish(LogRecord record) {
H A DLogRecord.java36 * LogRecord objects are used to pass logging requests between
39 * When a LogRecord is passed into the logging framework it
45 * LogRecord class will infer them automatically when they are
48 * if a logging Handler wants to pass off a LogRecord to another
56 * <li>The LogRecord class is serializable.
71 public class LogRecord implements java.io.Serializable { class in inherits:java.io.Serializable
80 * to 32-bit wraparound. Unfortunately, LogRecord.getThreadID()
145 * Returns the default value for a new LogRecord's threadID.
162 * Construct a LogRecord with the given level and message values.
177 public LogRecord(Leve method in class:LogRecord
[all...]
H A DXMLFormatter.java34 * Format a LogRecord into a standard XML format.
104 public String format(LogRecord record) {
H A DFileHandler.java566 * Format and publish a <tt>LogRecord</tt>.
571 public synchronized void publish(LogRecord record) {
H A DLogManager.java1416 public void log(LogRecord record) {
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/logging/
H A DLogWrapperBase.java30 import java.util.logging.LogRecord ;
46 LogRecord lrec = new LogRecord( level, key ) ;
56 private void inferCaller( Class wrapperClass, LogRecord lrec )
/openjdk7/jdk/test/java/util/logging/
H A DLoggerSubclass.java33 import java.util.logging.LogRecord;
57 public void publish(LogRecord l) {
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/logging/
H A DHttpLogFormatter.java28 import java.util.logging.LogRecord;
51 public String format(LogRecord record) {
/openjdk7/jdk/test/sun/rmi/runtime/Log/checkLogging/
H A DCheckLogging.java36 import java.util.logging.LogRecord;
118 public void publish(LogRecord record) {
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXAWTFormatter.java63 * Format the given LogRecord.
67 public synchronized String format(LogRecord record) {
/openjdk7/jdk/src/share/classes/sun/rmi/runtime/
H A DLog.java41 import java.util.logging.LogRecord;
282 public void publish(LogRecord record) {
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivation.java1473 private void addLogRecord(LogRecord rec) throws ActivationException {
1507 * and apply an update (a LogRecord) to the current state.
1526 return ((LogRecord) update).apply(state);
1537 private static abstract class LogRecord implements Serializable { class in class:Activation
1546 private static class LogRegisterObject extends LogRecord {
1575 private static class LogUnregisterObject extends LogRecord {
1602 private static class LogRegisterGroup extends LogRecord {
1625 private static class LogUpdateDesc extends LogRecord {
1655 private static class LogUpdateGroupDesc extends LogRecord {
1684 private static class LogUnregisterGroup extends LogRecord {
[all...]

Completed in 279 milliseconds