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 Logger.log(Log.Level level, String msg)
          Log a message at the provided level.
 void Log.log(Log.Level level, String message)
          Log a trace message.
 void LocalLog.log(Log.Level level, String msg)
           
 void Logger.log(Log.Level level, String msg, Object arg0)
          Log a message at the provided level.
 void Logger.log(Log.Level level, String msg, Object[] argArray)
          Log a message at the provided level.
 void Logger.log(Log.Level level, String msg, Object arg0, Object arg1)
          Log a message at the provided level.
 void Logger.log(Log.Level level, String msg, Object arg0, Object arg1, Object arg2)
          Log a message at the provided level.
 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)
           
 void Logger.log(Log.Level level, Throwable throwable, String msg)
          Log a message with a throwable at the provided level.
 void Logger.log(Log.Level level, Throwable throwable, String msg, Object arg0)
          Log a message with a throwable at the provided level.
 void Logger.log(Log.Level level, Throwable throwable, String msg, Object[] argArray)
          Log a message with a throwable at the provided level.
 void Logger.log(Log.Level level, Throwable throwable, String msg, Object arg0, Object arg1)
          Log a message with a throwable at the provided level.
 void Logger.log(Log.Level level, Throwable throwable, String msg, Object arg0, Object arg1, Object arg2)
          Log a message with a throwable at the provided level.
 



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