Uses of Class
things.thinger.io.Logger.LEVEL

Packages that use Logger.LEVEL
things.common.commands   
things.thinger.io   
things.thinger.kernel.basic   
 

Uses of Logger.LEVEL in things.common.commands
 

Methods in things.common.commands that return Logger.LEVEL
 Logger.LEVEL CommandLogger.getLevel()
          This will get the level of entries that will pass.
 

Methods in things.common.commands with parameters of type Logger.LEVEL
 void CommandLogger.init(Logger logger, java.lang.String tag, Logger.LEVEL level)
          Initialize the LoggerWriter with a Writer and a prefix ID.
 void CommandLogger.init(java.io.PrintWriter out, java.lang.String tag, Logger.LEVEL level)
          Initialize the LoggerWriter with a Writer and a prefix ID.
 void CommandLogger.setLevel(Logger.LEVEL newLevel)
          This will set the level of entries that will pass.
 void CommandLogger.setPostLevel(Logger.LEVEL newLevel)
          This will set the default level of StringPoster posted entries.
 void CommandLogger.shout(java.lang.String msg, int numeric, Logger.LEVEL theLevel)
          Shout a log entry with numerics.
 void CommandLogger.shout(java.lang.String msg, int numeric, Logger.LEVEL theLevel, java.util.Collection<NVImmutable> attributes)
          Shout a log entry with numerics and attributes.
 void CommandLogger.shout(java.lang.String msg, int numeric, Logger.LEVEL theLevel, NVImmutable... attributes)
          Shout a log entry with numerics and attributes.
 void CommandLogger.shout(java.lang.String msg, int numeric, Logger.LEVEL theLevel, java.lang.String... attributes)
          Shout a log entry with numerics and attributes.
 void CommandLogger.shout(java.lang.String msg, Logger.LEVEL theLevel)
          Shout a log entry.
 

Uses of Logger.LEVEL in things.thinger.io
 

Methods in things.thinger.io that return Logger.LEVEL
 Logger.LEVEL Logger.getLevel()
          This will get the level of entries that will pass.
static Logger.LEVEL Logger.LEVEL.getLevelByName(java.lang.String name)
          It will return a level by name.
static Logger.LEVEL Logger.LEVEL.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Logger.LEVEL[] Logger.LEVEL.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in things.thinger.io with parameters of type Logger.LEVEL
 boolean Logger.LEVEL.dontpass(Logger.LEVEL thanThis)
           
 boolean Logger.LEVEL.pass(Logger.LEVEL thanThis)
           
 void Logger.setLevel(Logger.LEVEL newLevel)
          This will set the level of entries that will pass.
 void Logger.setPostLevel(Logger.LEVEL newLevel)
          This will set the default level of StringPoster posted entries.
 void Logger.shout(java.lang.String msg, int numeric, Logger.LEVEL theLevel)
          Shout a log entry with numerics.
 void Logger.shout(java.lang.String msg, int numeric, Logger.LEVEL theLevel, java.util.Collection<NVImmutable> attributes)
          Shout a log entry with numerics and attributes.
 void Logger.shout(java.lang.String msg, int numeric, Logger.LEVEL theLevel, NVImmutable... attributes)
          Shout a log entry with numerics and attributes.
 void Logger.shout(java.lang.String msg, int numeric, Logger.LEVEL theLevel, java.lang.String... attributes)
          Shout a log entry with numerics and attributes.
 void Logger.shout(java.lang.String msg, Logger.LEVEL theLevel)
          Shout a log entry.
 

Uses of Logger.LEVEL in things.thinger.kernel.basic
 

Fields in things.thinger.kernel.basic declared as Logger.LEVEL
protected  Logger.LEVEL KernelBasicBase.config_LOGGING_LEVEL
           
 

Methods in things.thinger.kernel.basic that return Logger.LEVEL
 Logger.LEVEL KernelBasic_WriterLogger.getLevel()
          This will get the level of entries that will pass.
 

Methods in things.thinger.kernel.basic with parameters of type Logger.LEVEL
 KernelBasic_WriterLogger KernelBasic_WriterLogger_StandardFactory.forgeFileLogger(WhoAmI owner, java.lang.String path, AFileSystem fs, Logger.LEVEL configuredLevel)
          Create a filesystem based logger.
 KernelBasic_WriterLogger KernelBasic_WriterLogger_Factory.forgeFileLogger(WhoAmI owner, java.lang.String path, AFileSystem fs, Logger.LEVEL configuredLevel)
          Create a filesystem based logger.
 void KernelBasic_WriterLogger.init(java.io.PrintWriter out, WhoAmI ownerId, Logger.LEVEL level)
          Initialize the LoggerWriter with a Writer and a prefix ID.
 void KernelBasic_WriterLogger.setLevel(Logger.LEVEL newLevel)
          This will set the level of entries that will pass.
 void KernelBasic_WriterLogger.setPostLevel(Logger.LEVEL newLevel)
          This will set the default level of StringPoster posted entries.
 void KernelBasic_WriterLogger.shout(java.lang.String msg, int numeric, Logger.LEVEL theLevel)
          Shout a log entry with numerics.
 void KernelBasic_WriterLogger.shout(java.lang.String msg, int numeric, Logger.LEVEL theLevel, java.util.Collection<NVImmutable> attributes)
          Shout a log entry with numerics and attributes.
 void KernelBasic_WriterLogger.shout(java.lang.String msg, int numeric, Logger.LEVEL theLevel, NVImmutable... attributes)
          Shout a log entry with numerics and attributes.
 void KernelBasic_WriterLogger.shout(java.lang.String msg, int numeric, Logger.LEVEL theLevel, java.lang.String... attributes)
          Shout a log entry with numerics and attributes.
 void KernelBasic_WriterLogger.shout(java.lang.String msg, Logger.LEVEL theLevel)
          Shout a log entry.
 



Things.