util
Class Logger

java.lang.Object
  extended by util.Logger

public class Logger
extends java.lang.Object

Utility class to write a log file. In this app, this gives us some hope of automating the testing procedure. Because of that, this class is rather special purpose and primitive.

Version:
$Id: Logger.java,v 1.1.1.1 2009/01/13 03:43:28 zahorjan Exp $

Field Summary
(package private)  java.io.BufferedWriter file
           
 
Constructor Summary
Logger(java.lang.String logfileName)
           
 
Method Summary
 void close()
           
 void log(java.lang.String msg)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

file

java.io.BufferedWriter file
Constructor Detail

Logger

public Logger(java.lang.String logfileName)
       throws java.io.IOException
Throws:
java.io.IOException
Method Detail

log

public void log(java.lang.String msg)
         throws java.io.IOException
Throws:
java.io.IOException

close

public void close()