util
Interface Logging

All Known Implementing Classes:
Logger

public interface Logging

Interface defining a very simple file-based logging system.


Method Summary
 void closeLogFile()
          Terminates the current log and closes its log file.
 void logMsg(java.lang.String msg)
          Writes the given message to the log file.
 void logWrite(java.lang.String msg)
          Writes the given message with a line terminator to the log file.
 void openLogFile(java.lang.String path)
          Starts a log on the file with the specified path.
 

Method Detail

openLogFile

void openLogFile(java.lang.String path)
Starts a log on the file with the specified path.


logMsg

void logMsg(java.lang.String msg)
Writes the given message to the log file.


logWrite

void logWrite(java.lang.String msg)
Writes the given message with a line terminator to the log file.


closeLogFile

void closeLogFile()
Terminates the current log and closes its log file.