Package org.scijava.log
Class LogLevel
- java.lang.Object
-
- org.scijava.log.LogLevel
-
public final class LogLevel extends Object
Constants for specifying a logger's level of verbosity.- Author:
- Curtis Rueden
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Stringprefix(int level)static intvalue(String s)Extracts the log level value from a string.
-
-
-
Field Detail
-
NONE
public static final int NONE
- See Also:
- Constant Field Values
-
ERROR
public static final int ERROR
- See Also:
- Constant Field Values
-
WARN
public static final int WARN
- See Also:
- Constant Field Values
-
INFO
public static final int INFO
- See Also:
- Constant Field Values
-
DEBUG
public static final int DEBUG
- See Also:
- Constant Field Values
-
TRACE
public static final int TRACE
- See Also:
- Constant Field Values
-
-