Uses of Class
com.flat502.rox.log.Level

Packages that use Level
com.flat502.rox.log Supporting classes for HTTP level logging. 
 

Uses of Level in com.flat502.rox.log
 

Fields in com.flat502.rox.log declared as Level
static Level Level.DEBUG
          Errors, warnings and informational and debug messages are logged.
static Level Level.ERROR
          The least verbose logging level: only errors are logged.
static Level Level.INFO
          Errors, warnings and informational messages are logged.
static Level Level.TRACE
          The most verbose logging level: everything is logged.
static Level Level.WARNING
          Errors and warnings are logged.
 

Methods in com.flat502.rox.log that return Level
static Level Level.parseLevel(java.lang.String name, Level defaultLevel)
          A convenience method that converts a string name into a Level instance.
 

Methods in com.flat502.rox.log with parameters of type Level
 boolean Level.at(Level level)
          Compares a given level to determine whether or not this instance meets the indicated verbosity requirement.
static Level Level.parseLevel(java.lang.String name, Level defaultLevel)
          A convenience method that converts a string name into a Level instance.
 

Constructors in com.flat502.rox.log with parameters of type Level
AbstractLog(Level level)
           
StreamLog(java.io.OutputStream os, Level level)