|
|||||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | ||||||||||
See:
Description
| Class Summary | |
| Level | Levels of logging (based on propsed Java Logging API). |
| Log | Logging class that can be switched off completly to deliver max performance if required (just set Log.ON to false) |
| Logger | miniLogger really small logger that is self-contained and very easy to use and configure from command line using system properties (or from inside of your application if you desire so). |
| LogManager | Class that manages loggers |
miniLogger provides a simple to use logging API that is very similar to Log4J and JDK 1.4 logging but works on all Java 2 versions.
To use miniLogger following steps are required:
import soaprmi.util.logging.Logger; foo.FooClass) and will be shared by class methods, ex::public class FooClass { private static Logger logger = Logger.getLogger(); //.... private static Logger logger = Logger.getLogger("my.category.name"); void hello(String name) { logger.entering(name); logger.fine("will do something"); logger.exiting(); }
|
|||||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | ||||||||||