Lines Matching defs:parent

47  * <p>Loggers "inherit" log level setting from their parent if their own level is
51 * returns {@code true}, loggers also inherit their parent's handlers. In this
112 /** The parent logger of this logger. */
113 Logger parent;
123 * <li>the logging level of the parent
147 /** True to notify the parent's handlers of each log message. */
188 Logger parent = this.parent;
197 } else if (parent == null) {
207 * 2. This is a root logger (no parent)
216 * At this point, we're eligible for the optimization if our parent
219 * 2. our parent exists
221 * 4. we notify our parent's handlers
223 newLogHandler = parent.dalvikLogHandler;
296 * The anonymous loggers' parent is set to be the root logger. This way it
310 * The anonymous loggers' parent is set to be the root logger. This way it
514 * that this logger inherits its parent's level.
524 * that this logger will inherit its parent's level.
540 * logger's parent to publish incoming log records, potentially recursively
543 * @return {@code true} if set to use parent's handlers, {@code false}
552 * logger's parent, potentially recursively up the namespace.
555 * the new flag indicating whether to use the parent's handlers.
567 * Gets the nearest parent of this logger in the namespace, a {@code null}
570 * @return the parent of this logger in the namespace.
573 return parent;
577 * Sets the parent of this logger in the namespace. This method should be
580 * @param parent
581 * the parent logger to set.
583 public void setParent(Logger parent) {
584 if (parent == null) {
585 throw new NullPointerException("parent == null");
591 logManager.setParent(this, parent);
605 * messages. If the value is {@code null}, the parent's resource bundle will be
616 * localize logging messages. If the value is {@code null}, the parent's resource
643 * inherited from its parent. The default level is {@code Level.INFO}.
657 * otherwise try to inherit from this logger's parent, recursively up the
661 for (Logger p = this; p != null; p = p.parent) {
1002 * logger's parent, potentially recursively up the namespace.
1030 // call the parent's handlers if set useParentHandlers
1032 Logger theParent = temp.parent;
1039 theParent = temp.parent;