Uses of Class
org.j4me.logging.Level

Packages that use Level
org.j4me.logging Provides application logging suitable for constrained devices. 
 

Uses of Level in org.j4me.logging
 

Fields in org.j4me.logging declared as Level
static Level Level.DEBUG
          The DEBUG level designates fine-grained informational events that are most useful to debug an application.
static Level Level.ERROR
          The ERROR level designates exceptional behavior that causes something in the application to run improperly.
static Level Level.INFO
          The INFO level designates informational messages that highlight the progress of the application at coarse-grained level.
 Level LogMessage.level
          The level of this log message.
static Level Level.OFF
          The OFF level means no log statements will be stored.
static Level Level.WARN
          The WARN level designates potentially harmful situations.
 

Methods in org.j4me.logging that return Level
static Level Log.getLogLevel()
          Returns the lowest level of statements that are logged.
 

Methods in org.j4me.logging with parameters of type Level
static void Log.setLevel(Level level)
          Sets the level log statements are evaluated.
protected  void LogMessage.setLogMessage(Level level, java.lang.String message)
          Replaces the contents of a log message.
 

Constructors in org.j4me.logging with parameters of type Level
LogMessage(Level level, java.lang.String message)
          Constructs a log message.