logs
Class Logger

java.lang.Object
  extended by logs.Logger

public class Logger
extends java.lang.Object


Method Summary
static Logger createNewLogger()
           
 void writeChatLog(java.lang.String sender, java.lang.String recipiant, java.lang.String msg)
          This little method just writes logs to the log-file.
(appends to the end of the file!)
..this just happens if you set logging enabled! (in the loggerConfig)
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

createNewLogger

public static Logger createNewLogger()

writeChatLog

public void writeChatLog(java.lang.String sender,
                         java.lang.String recipiant,
                         java.lang.String msg)
                  throws java.io.IOException
This little method just writes logs to the log-file.
(appends to the end of the file!)
..this just happens if you set logging enabled! (in the loggerConfig)

Parameters:
sender - The sender of the message
recipiant - The reciever of the message
msg - The message itself
Throws:
java.io.IOException