Uses of Class
bb.util.logging.Logger2

Packages that use Logger2
bb.science Provides classes and interfaces for mathematical and scientific programming. 
bb.util Provides miscellaneous utility classes and interfaces. 
bb.util.logging Provides classes which augment the JDK logging framework
 

Uses of Logger2 in bb.science
 

Methods in bb.science with parameters of type Logger2
 void StatsOverTime.addElseLog(Date date, double value, Logger2 logger2)
          Chiefly just calls add(date, value).
 

Uses of Logger2 in bb.util
 

Fields in bb.util declared as Logger2
private  Logger2 MemoryMonitor.logger2
          Logger2 where certain information (e.g. otherwise unhandleable errors) gets written to.
private  Logger2 ThreadMonitor.logger2
          Logger where certain information (e.g. otherwise unhandleable errors) gets written to.
private  Logger2 MemoryMonitorListenerImpl.logger2
           
private  Logger2 Properties2.logger2
           
 

Methods in bb.util that return Logger2
private  Logger2 MemoryMonitor.getLogger2()
          Returns MemoryMonitor.logger2, lazy initializing it if necessary.
private  Logger2 ThreadMonitor.getLogger2()
          Returns ThreadMonitor.logger2, lazy initializing it if necessary.
 

Uses of Logger2 in bb.util.logging
 

Fields in bb.util.logging declared as Logger2
private static Logger2 LogUtil.logger2_default
          A default Logger2 instance that any user of this class may draw on via getLogger2 if they do not want to bother creating their own Logger.
 

Methods in bb.util.logging that return Logger2
static Logger2 Logger2.getAnonymousLogger2()
          Returns getAnonymousLogger2(null).
static Logger2 Logger2.getAnonymousLogger2(String resourceBundleName)
          Constructs a new Logger2 whose underlying logger is anonymous (i.e. unregistered with LogManager) and uses resourceBundleName.
static Logger2 LogUtil.getLogger2()
          Accessor for LogUtil.logger2_default.
static Logger2 Logger2.getLogger2(String name)
          Returns getLogger2(name, null).
static Logger2 Logger2.getLogger2(String name, String resourceBundleName)
          Constructs a new Logger2 whose underlying logger is registered with LogManager and uses name and resourceBundleName.
static Logger2 LogUtil.makeLogger2(Class c)
          Returns makeLogger2(c, null) ).
static Logger2 LogUtil.makeLogger2(Class c, String suffix)
          Returns makeLogger2( getName(c, suffix) ).
static Logger2 LogUtil.makeLogger2(String name)
          Returns makeLogger2( name, null ).
static Logger2 LogUtil.makeLogger2(String name, String resourceBundleName)
          Returns a new Logger2 created by a call to Logger2.getLogger2(name, resourceBundleName).