Uses of Class
com.j256.ormlite.logger.Log.Level

Packages that use Log.Level
com.j256.ormlite.logger Logging utility classes. 
 

Uses of Log.Level in com.j256.ormlite.logger
 

Methods in com.j256.ormlite.logger that return Log.Level
static Log.Level Log.Level.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Log.Level[] Log.Level.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.j256.ormlite.logger with parameters of type Log.Level
 boolean Log.Level.isEnabled(Log.Level otherLevel)
          Return whether or not a level argument is enabled for this level value.
 boolean Logger.isLevelEnabled(Log.Level level)
          Return if logging level is enabled.
 boolean Log.isLevelEnabled(Log.Level level)
          Returns true if the log mode is in trace or higher.
 boolean LocalLog.isLevelEnabled(Log.Level level)
           
 void Log.log(Log.Level level, String message)
          Log a trace message.
 void LocalLog.log(Log.Level level, String msg)
           
 void Log.log(Log.Level level, String message, Throwable t)
          Log a trace message with a throwable.
 void LocalLog.log(Log.Level level, String msg, Throwable throwable)
           
 



This content is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.