org.ws4d.java.util
Interface LogSubscriber


public interface LogSubscriber

Classes which want to be notified about new debug messages must implement this interface and fill the notify() method.


Method Summary
 void notify(java.lang.String message)
          This method is called by Log when you are on the debug subscription list.
 

Method Detail

notify

void notify(java.lang.String message)
This method is called by Log when you are on the debug subscription list.

Parameters:
message - new debug message.
See Also:
Log