Uses of Interface
things.thinger.io.Logger

Packages that use Logger
things.common.commands   
things.data.processing   
things.data.transport.smtp   
things.thing   
things.thinger   
things.thinger.kernel.basic   
things.thinger.service   
things.thinger.service.actor   
things.thinger.service.proxy   
 

Uses of Logger in things.common.commands
 

Classes in things.common.commands that implement Logger
 class CommandLogger
          Command logger.
 

Fields in things.common.commands declared as Logger
 Logger CommandRoot.defaultLogger
          A default logger.
 

Methods in things.common.commands with parameters of type Logger
 void CommandLogger.init(Logger logger, java.lang.String tag, Logger.LEVEL level)
          Initialize the LoggerWriter with a Writer and a prefix ID.
 

Uses of Logger in things.data.processing
 

Methods in things.data.processing with parameters of type Logger
 void Crawler.crawl(java.lang.String pathroot, Logger logger, boolean loop)
          Start a crawl on the filesystem.
 

Uses of Logger in things.data.transport.smtp
 

Methods in things.data.transport.smtp with parameters of type Logger
 void TouchySMTPClientManager.init(Logger aLogger, java.lang.String name, java.lang.String targetAddress, int targetPort, boolean isStreaming, boolean extensions)
          Init the system.
 void TolerantSMTPClientManager.init(Logger aLogger, java.lang.String name, java.lang.String targetAddress, int targetPort, boolean isStreaming, boolean extensions)
          Init the system.
 void SMTPClientManager.init(Logger aLogger, java.lang.String name, java.lang.String targetAddress, int targetPort, boolean isStreaming, boolean extensions)
          Init the system.
 

Constructors in things.data.transport.smtp with parameters of type Logger
CleanSMTPClient(Logger theLogger)
          Create a new client.
CleanSMTPClient(Logger theLogger, java.lang.String name)
          Create a new client with an imposed name.
FancySMTPClient(Logger theLogger)
          Create a new client.
FancySMTPClient(Logger theLogger, java.lang.String name)
          Create a new client with an imposed name.
 

Uses of Logger in things.thing
 

Fields in things.thing declared as Logger
protected  Logger BASE.localSystemLogger
           
 

Methods in things.thing that return Logger
 Logger BASEInterface.GET_LOGGER()
          Get the MODULE's Logger.
 Logger BASE.GET_LOGGER()
          Get the THING's Logger.
 

Uses of Logger in things.thinger
 

Methods in things.thinger that return Logger
 Logger SystemInterface.getNamedLogger(java.lang.String name)
          Forge a new named logger.
 Logger SystemInterface.getSystemLogger()
          Get a system logger for the process.
 

Uses of Logger in things.thinger.kernel.basic
 

Classes in things.thinger.kernel.basic that implement Logger
 class KernelBasic_WriterLogger
          Implements a Writer based logger.
 

Fields in things.thinger.kernel.basic with type parameters of type Logger
protected  java.util.HashMap<WhoAmI,Logger> KernelBasicBase.localPropertyCache
           
protected  java.util.HashMap<java.lang.String,Logger> KernelBasicBase.loggerCache
           
 

Methods in things.thinger.kernel.basic that return Logger
 Logger KernelBasic.getNamedLogger(java.lang.String name)
          Forge a new named logger.
 Logger KernelBasic.getSystemLogger()
          Get a system logger for the process.
This is implemented with the numbered call GET_SYSTEM_LOGGER.
 

Constructors in things.thinger.kernel.basic with parameters of type Logger
KernalBasic_LoggingExpressor(Logger logger, SystemInterface si)
          Constructor.
 

Uses of Logger in things.thinger.service
 

Fields in things.thinger.service declared as Logger
protected  Logger Service.myLogger
          The default logger provided by the system.
 

Methods in things.thinger.service with parameters of type Logger
 void Service.setLogger(Logger theLogger)
          Set the logger for this service.
 

Uses of Logger in things.thinger.service.actor
 

Fields in things.thinger.service.actor declared as Logger
protected  Logger ActorServiceBase.logger
          Usable local logger.
protected  Logger ActorClientBase.logger
          Usable local logger.
 

Uses of Logger in things.thinger.service.proxy
 

Fields in things.thinger.service.proxy declared as Logger
 Logger ProxyContext.logger
           
 

Constructors in things.thinger.service.proxy with parameters of type Logger
ProxyContext(WhoAmI id, ProxySession session, java.net.Socket uplink, java.net.Socket downlink, Logger logger)
          Constructor.
ProxyServiceContext(WhoAmI id, ProxySession session, ProxyServiceThread thread, ProxyService ownerService, java.net.Socket uplink, java.net.Socket downlink, ProxyProcessor processor, Logger logger)
          Constructor.
 



Things.