sdsu.logging
Class NullLogger

java.lang.Object
  |
  +--sdsu.logging.LoggerImplementation
        |
        +--sdsu.logging.NullLogger

public final class NullLogger
extends LoggerImplementation

This logger ignores all log requests. Useful in turning off logging without removing all loging statements.

Version:
1.1 18 January 1998
Author:
Roger Whitney (whitney@cs.sdsu.edu)
See Also:
Logger

Method Summary
static LoggerImplementation register()
          Create a NullLogger and register it with Logger Returns the current active logger.
 
Methods inherited from class sdsu.logging.LoggerImplementation
log, reset
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

register

public static LoggerImplementation register()
Create a NullLogger and register it with Logger Returns the current active logger. If a logger has previously been set, it will be that logger.