blob: 424cf9fea76f1cc1a60ce6e4bf9b3d47a1845c73 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache license, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the license for the specific language governing permissions and
* limitations under the license.
*/
package org.apache.logging.log4j;
/**
* Levels used for identifying the severity of an event. Levels are organized from most specific to least:<br>
* OFF<br>
* FATAL<br>
* ERROR<br>
* WARN<br>
* INFO<br>
* DEBUG<br>
* TRACE<br>
*
* Typically, configuring a level in a filter or on a logger will cause logging events of that level and those
* that are more specific to pass through the filter.
* A special level, ALL, is guaranteed to capture all levels when used in logging configurations.
* @doubt There is not intermediate values available between WARN and INFO for example.
* Any reason why the existing log4j values were not retained? (RG) Yes - It is of type Enum. There is no way
* to add a new level without modifying the class. (CA) log4j 1.2 allows the introduction of arbitrary
* user--defined levels and questions about how to do it come up from time to time on the mailing list.
* Generally it results from trying to overload level to indicate something about the intended audience
* which would be better served by appropriate design of the logger hierarchy. However, it is asked
* frequently enough that somebody is using it appropriately.
* @doubt separating the converter from the type would allow alternative converters for different locales
* or different logging API's (for example, the same level could be FINER with one converter and TRACE
* with another. (RG) It's an Enum. All enums must provide the valueOf method. toLevel(String) is carried
* over from 1.x.
*
* @doubt Curt makes valid points. I like this being an enum but I dislike that it doesn't support ALERT, SEVERE,
* NOTICE, SERIOUS, EMERGENCY, etc. Do we just add them? That multiples the number of methods in the Logger
* interface. I've heard suggestions that the log methods should be added to the Level. That would make sense.
*/
public enum Level {
OFF(0), FATAL(1), ERROR(2), WARN(3), INFO(4), DEBUG(5), TRACE(6), ALL(Integer.MAX_VALUE);
private final int intLevel;
private Level(int val) {
intLevel = val;
}
/**
* Convert the string passed as argument to a level. If the
* conversion fails, then this method returns {@link #DEBUG}.
*
* @return the Level associate with the String.
*/
public static Level toLevel(String sArg) {
return toLevel(sArg, DEBUG);
}
/**
* Convert the string passed as argument to a level. If the
* conversion fails, then this method returns the value of
* <code>defaultLevel</code>.
*/
public static Level toLevel(String sArg, Level defaultLevel) {
if (sArg == null) {
return defaultLevel;
}
Level level = valueOf(sArg);
return (level == null) ? defaultLevel : level;
}
/**
* @doubt I really dislike the "greaterOrEqual" and "lessOrEqual" methods. I can never remember whether
* the test compares this level to the passed in level or the other way around. As it stands, this
* method is not intuitive as the name is greaterOrEqual but the test it does is <=.
*
* Compares the specified Level against this one.
* @param level The level to check.
* @return True if the passed Level is more general or the same as this Level.
*/
public boolean greaterOrEqual(Level level) {
return (intLevel <= level.intLevel);
}
/**
* Compares the specified Level against this one.
* @param level The level to check.
* @return True if the passed Level is more general or the same as this Level.
*/
public boolean greaterOrEqual(int level) {
return (intLevel <= level);
}
/**
* Compares the specified Level against this one.
* @param level The level to check.
* @return True if the passed Level is more specific or the same as this Level.
*/
public boolean lessOrEqual(Level level) {
return (intLevel <= level.intLevel);
}
/**
* Compares the specified Level against this one.
* @param level The level to check.
* @return True if the passed Level is more specific or the same as this Level.
*/
public boolean lessOrEqual(int level) {
return (intLevel <= level);
}
public int intLevel() {
return intLevel;
}
}