org.salespointframework.core.logging
Interface LogContext

All Known Implementing Classes:
Log, SaleProcess

public interface LogContext

Any object that provides access to some log file through a log(org.salespointframework.core.logging.Loggable) method.

Since:
v2.0
Version:
2.0 14/07/1999
Author:
Steffen Zschaler

Method Summary
 void log(Loggable l)
          Logs the given data to a log file.
 

Method Detail

log

void log(Loggable l)
         throws LogNoOutputStreamException,
                java.io.IOException
Logs the given data to a log file.

Parameters:
l - the event to be logged.
Throws:
LogNoOutputStreamException - if no OutputStream has been specified for the log file.
java.io.IOException - if an IOException occurs when writing to the log file.