com.ibm.di.fc.remotecmdlnfc
Interface LogProxy

All Known Implementing Classes:
LogProxyImpl, QA_LogProxyImpl

public interface LogProxy

Interface for the Log proxy class. This interface matches server.Log.


Method Summary
 void close()
           
 void debug(String res)
           
 void debug(String res, Object param)
           
 void debug(String res, Object[] params)
           
 void debug(String res, Object param1, Object param2)
           
 void dump(Object o)
          This methods dumps an Object to the log file.
 void dumpEntry(Entry e)
          Dumps a formatted message to the logfile from the contents of an Entry.
 void error(String res)
           
 void error(String res, Object[] params)
           
 void error(String res, Object[] params, Throwable error)
           
 void error(String res, Object param, Throwable error)
           
 void error(String res, String param)
           
 void error(String res, String param1, String param2)
           
 void error(String res, Throwable error)
           
 void fatal(String res)
           
 void fatal(String res, Object param)
           
 void fatal(String res, Object[] params)
           
 void fatal(String res, Object param, Throwable err)
           
 void fatal(String res, Throwable err)
           
 void fine(String res)
           
 void fine(String res, Object param)
           
 void fine(String res, Object[] params)
           
 void fine(String res, Object param1, Object param2)
           
 boolean getDebug()
          Return the value of the debug parameter.
 Log getLog()
           
 String getPrefix()
          Returns the prefix to be prepended to all messages.
 String getString(String resource)
          Return the NLS string given the resource.
 String getString(String resource, Object param)
          Return the NLS string given the resource and a parameter.
 String getString(String resource, Object[] params)
          Return the NLS string given the resource and an array of parameters.
 String getString(String resource, Object param1, Object param2)
          Return the NLS string given the resource and two parameters.
 void info(String res)
           
 void info(String res, Object param)
           
 void info(String res, Object[] params)
           
 void info(String res, Object param1, Object param2)
           
 void log(String level, String msg)
           
 void logdebug(String msg)
           
 void logerror(String msg)
           
 void logerror(String msg, Throwable error)
           
 void logfatal(String msg)
           
 void logfine(String msg)
          Logs a message to the output stream.
 void loginfo(String msg)
           
 void logwarn(String msg)
           
 void setDebug(boolean debug)
          Sets debug parameter.
 void setPrefix(String prefix)
          Sets a prefix to be prepended to all messages.
 void warn(String res)
           
 void warn(String res, Object param)
           
 void warn(String res, Object[] params)
           
 void warn(String res, Object param1, Object param2)
           
 

Method Detail

close

void close()

debug

void debug(String res)

debug

void debug(String res,
           Object param)

debug

void debug(String res,
           Object[] params)

debug

void debug(String res,
           Object param1,
           Object param2)

dump

void dump(Object o)
This methods dumps an Object to the log file.


dumpEntry

void dumpEntry(Entry e)
Dumps a formatted message to the logfile from the contents of an Entry.


error

void error(String res)

error

void error(String res,
           Object[] params)

error

void error(String res,
           Object[] params,
           Throwable error)

error

void error(String res,
           Object param,
           Throwable error)

error

void error(String res,
           String param)

error

void error(String res,
           String param1,
           String param2)

error

void error(String res,
           Throwable error)

fatal

void fatal(String res)

fatal

void fatal(String res,
           Object param)

fatal

void fatal(String res,
           Object[] params)

fatal

void fatal(String res,
           Object param,
           Throwable err)

fatal

void fatal(String res,
           Throwable err)

fine

void fine(String res)

fine

void fine(String res,
          Object param)

fine

void fine(String res,
          Object[] params)

fine

void fine(String res,
          Object param1,
          Object param2)

getDebug

boolean getDebug()
Return the value of the debug parameter.


getPrefix

String getPrefix()
Returns the prefix to be prepended to all messages.


getString

String getString(String resource)
Return the NLS string given the resource.


getString

String getString(String resource,
                 Object param)
Return the NLS string given the resource and a parameter.


getString

String getString(String resource,
                 Object[] params)
Return the NLS string given the resource and an array of parameters.


getString

String getString(String resource,
                 Object param1,
                 Object param2)
Return the NLS string given the resource and two parameters.


info

void info(String res)

info

void info(String res,
          Object param)

info

void info(String res,
          Object[] params)

info

void info(String res,
          Object param1,
          Object param2)

log

void log(String level,
         String msg)

logdebug

void logdebug(String msg)

logerror

void logerror(String msg)

logerror

void logerror(String msg,
              Throwable error)

logfatal

void logfatal(String msg)

logfine

void logfine(String msg)
Logs a message to the output stream.


loginfo

void loginfo(String msg)

logwarn

void logwarn(String msg)

setDebug

void setDebug(boolean debug)
Sets debug parameter.


setPrefix

void setPrefix(String prefix)
Sets a prefix to be prepended to all messages.


warn

void warn(String res)

warn

void warn(String res,
          Object param)

warn

void warn(String res,
          Object[] params)

warn

void warn(String res,
          Object param1,
          Object param2)

getLog

Log getLog()