/************************************************* * * = PACKAGE * netsvcs.Logger * * = FILENAME * LogMessageReceiver.java * *@author Everett Anderson * *************************************************/ package netsvcs.Logger; import java.io.*; /** * *

DESCRIPTION

* *
* The LogMessageReceiver removes the code that handles a log message from * the logging service acceptor. The DefaultLMR simply calls the LogRecord's * print method. Other implementations of this interface can be built and * given to the ServerLoggingAcceptor to change the result. * * @see netsvcs.Logger.ServerLoggingAcceptor * @see netsvcs.Logger.LogRecord */ public interface LogMessageReceiver { public void logRecord (String hostname, LogRecord record); };