com.tivoli.jflt
Interface BasicLogger

All Known Subinterfaces:
GenericLogger, LogAdapter

public interface BasicLogger

This interface contains methods for logging and controlling text messages.

Version:
1.1
Author:
Raimondo Castino, Cosimo Vampo

Method Summary
 boolean isLogging()
          Determines if the logger is logging data (true) or not ( false).
 void log(long type, java.lang.Object loggingClass, java.lang.String loggingMethod, java.lang.String text)
          Logs a text message.
 void setLogging(boolean flag)
          Sets a flag that indicates whether the logger is logging data (true ) or not (false).
 

Method Detail

log

public void log(long type,
                java.lang.Object loggingClass,
                java.lang.String loggingMethod,
                java.lang.String text)
Logs a text message.

isLogging

public boolean isLogging()
Determines if the logger is logging data (true) or not ( false).

setLogging

public void setLogging(boolean flag)
Sets a flag that indicates whether the logger is logging data (true ) or not (false).