Lines Matching refs:level

66  * level is set to <tt>null</tt>, then its effective level is inherited
70 * The log level can be configured based on the properties from the
73 * by calls on the Logger.setLevel method. If a logger's level is
75 * logger that has <tt>null</tt> as its level will inherit its
76 * effective level from its parent.
79 * check of the request level (e.g., SEVERE or FINE) against the
80 * effective log level of the logger. If the request level is
81 * lower than the log level, the logging call returns immediately.
126 * There are a set of "log" methods that take a log level, a message
143 * simple string at a given log level. These methods are named
198 private volatile int levelValue; // current effective level value
353 * If a new logger is created its log level will be configured
398 * If a new logger is created its log level will be configured
488 * by default it inherits its effective level and handlers
512 * by default it inherits its effective level and handlers
564 * After passing the initial "level" check, the Logger will
643 * level then the given message is forwarded to all the
646 * @param level One of the message level identifiers, e.g., SEVERE
649 public void log(Level level, String msg) {
650 if (level.intValue() < levelValue || levelValue == offValue) {
653 LogRecord lr = new LogRecord(level, msg);
661 * level then a corresponding LogRecord is created and forwarded
664 * @param level One of the message level identifiers, e.g., SEVERE
668 public void log(Level level, String msg, Object param1) {
669 if (level.intValue() < levelValue || levelValue == offValue) {
672 LogRecord lr = new LogRecord(level, msg);
682 * level then a corresponding LogRecord is created and forwarded
685 * @param level One of the message level identifiers, e.g., SEVERE
689 public void log(Level level, String msg, Object params[]) {
690 if (level.intValue() < levelValue || levelValue == offValue) {
693 LogRecord lr = new LogRecord(level, msg);
702 * level then the given arguments are stored in a LogRecord
710 * @param level One of the message level identifiers, e.g., SEVERE
714 public void log(Level level, String msg, Throwable thrown) {
715 if (level.intValue() < levelValue || levelValue == offValue) {
718 LogRecord lr = new LogRecord(level, msg);
732 * level then the given message is forwarded to all the
735 * @param level One of the message level identifiers, e.g., SEVERE
740 public void logp(Level level, String sourceClass, String sourceMethod, String msg) {
741 if (level.intValue() < levelValue || levelValue == offValue) {
744 LogRecord lr = new LogRecord(level, msg);
755 * level then a corresponding LogRecord is created and forwarded
758 * @param level One of the message level identifiers, e.g., SEVERE
764 public void logp(Level level, String sourceClass, String sourceMethod,
766 if (level.intValue() < levelValue || levelValue == offValue) {
769 LogRecord lr = new LogRecord(level, msg);
782 * level then a corresponding LogRecord is created and forwarded
785 * @param level One of the message level identifiers, e.g., SEVERE
791 public void logp(Level level, String sourceClass, String sourceMethod,
793 if (level.intValue() < levelValue || levelValue == offValue) {
796 LogRecord lr = new LogRecord(level, msg);
808 * level then the given arguments are stored in a LogRecord
816 * @param level One of the message level identifiers, e.g., SEVERE
822 public void logp(Level level, String sourceClass, String sourceMethod,
824 if (level.intValue() < levelValue || levelValue == offValue) {
827 LogRecord lr = new LogRecord(level, msg);
856 * level then the given message is forwarded to all the
863 * @param level One of the message level identifiers, e.g., SEVERE
870 public void logrb(Level level, String sourceClass, String sourceMethod,
872 if (level.intValue() < levelValue || levelValue == offValue) {
875 LogRecord lr = new LogRecord(level, msg);
886 * level then a corresponding LogRecord is created and forwarded
893 * @param level One of the message level identifiers, e.g., SEVERE
901 public void logrb(Level level, String sourceClass, String sourceMethod,
903 if (level.intValue() < levelValue || levelValue == offValue) {
906 LogRecord lr = new LogRecord(level, msg);
919 * level then a corresponding LogRecord is created and forwarded
926 * @param level One of the message level identifiers, e.g., SEVERE
934 public void logrb(Level level, String sourceClass, String sourceMethod,
936 if (level.intValue() < levelValue || levelValue == offValue) {
939 LogRecord lr = new LogRecord(level, msg);
951 * level then the given arguments are stored in a LogRecord
963 * @param level One of the message level identifiers, e.g., SEVERE
971 public void logrb(Level level, String sourceClass, String sourceMethod,
973 if (level.intValue() < levelValue || levelValue == offValue) {
976 LogRecord lr = new LogRecord(level, msg);
992 * to a method. A LogRecord with message "ENTRY", log level
1009 * to a method. A LogRecord with message "ENTRY {0}", log level
1031 * log level FINER, and the given sourceMethod, sourceClass, and
1057 * from a method. A LogRecord with message "RETURN", log level
1075 * from a method. A LogRecord with message "RETURN {0}", log level
1096 * using the FINER level.
1099 * level then the given arguments are stored in a LogRecord
1124 // Start of simple convenience methods using level names as method names
1131 * level then the given message is forwarded to all the
1147 * level then the given message is forwarded to all the
1163 * level then the given message is forwarded to all the
1179 * level then the given message is forwarded to all the
1195 * level then the given message is forwarded to all the
1211 * level then the given message is forwarded to all the
1227 * level then the given message is forwarded to all the
1244 * Set the log level specifying which message levels will be
1246 * value will be discarded. The level value Level.OFF
1249 * If the new level is null, it means that this node should
1250 * inherit its level from its nearest ancestor with a specific
1251 * (non-null) level value.
1253 * @param newLevel the new value for the log level (may be null)
1268 * effective level will be inherited from its parent.
1270 * @return this Logger's level
1277 * Check if a message of the given level would actually be logged
1278 * by this logger. This check is based on the Loggers effective level,
1281 * @param level a message logging level
1282 * @return true if the given message level is currently being logged.
1284 public boolean isLoggable(Level level) {
1285 if (level.intValue() < levelValue || levelValue == offValue) {
1603 // As a result of the reparenting, the effective level
1610 // Package-level method.
1625 // Recalculate the effective level for this node and
1631 // Figure out our current effective level.
1651 // System.err.println("effective level: \"" + getName() + "\" := " + level);
1653 // Recursively update the level on each of our kids.