pyrasun.eio.util
Interface LoggerManager

All Known Implementing Classes:
L4J

public interface LoggerManager


Method Summary
 Logger getLogger(java.lang.Class category)
          Get a logger instance for the specified category (in the form of a class)
 Logger getLogger(java.lang.Object object)
          Get a logger instance for the specified object - works by getting the class for the object and then using the class as the category.
 Logger getLogger(java.lang.String category)
          Get a logger instance for the specified category
 

Method Detail

getLogger

public Logger getLogger(java.lang.String category)
Get a logger instance for the specified category


getLogger

public Logger getLogger(java.lang.Class category)
Get a logger instance for the specified category (in the form of a class)


getLogger

public Logger getLogger(java.lang.Object object)
Get a logger instance for the specified object - works by getting the class for the object and then using the class as the category.



Pyrasun EmberIO