oracle.ifs.agents.common
Interface AgentLogger


public interface AgentLogger

An AgentLogger logs messages for agents run by ServerManager.

An AgentLogger is typically shared by all running agents, so that all log messages are written to a single log file.


Method Summary
 void log()
          output a newline to the log.
 void log(java.lang.String msg)
          output a newline-terminated string to the log.
 void printStackTrace(java.lang.Throwable e)
          Print an exception stack trace to the log.
 

Method Detail


log


public void log()
output a newline to the log.

log


public void log(java.lang.String msg)
output a newline-terminated string to the log.
Parameters:
msg - the message to log.

printStackTrace


public void printStackTrace(java.lang.Throwable e)
Print an exception stack trace to the log.
Parameters:
e - the Throwable to trace to the log.