Oracle Secure Enterprise Search Java API Reference
10g Release 1 (10.1.6) Beta

B19032-01


oracle.search.sdk.crawler
Interface Logger


public interface Logger

Logger is an interface used by a crawler plugin to output message to the crawler log file.


Method Summary
 void debug(java.lang.String logmessage)
          logging the timestamp and the debug message
 void debug(java.lang.String logmessage, java.lang.Object caller)
          logging the class name and the debug message
 void error(java.lang.String logmessage)
          logging the timestamp and the error message
 void error(java.lang.String logmessage, java.lang.Object caller)
          logging the class name and the error message
 void error(java.lang.Throwable e)
          logging the timestamp and the error exception or error
 void fatal(java.lang.String logmessage)
          logging the timestamp and the fatal message
 void fatal(java.lang.String logmessage, java.lang.Object caller)
          logging the class name and the fatal message
 void fatal(java.lang.Throwable e)
          logging the timestamp and the fatal exception
 void info(java.lang.String logmessage)
          logging the timestamp and the info message
 void info(java.lang.String logmessage, java.lang.Object caller)
          logging the class name and the info message
 void warn(java.lang.String logmessage)
          logging the timestamp and the warn message
 void warn(java.lang.String logmessage, java.lang.Object caller)
          logging the class name and the warn message

 

Method Detail

fatal

public void fatal(java.lang.String logmessage,
                  java.lang.Object caller)
logging the class name and the fatal message
Parameters:
logmessage - : to be logged message
caller - : the object to call this method

fatal

public void fatal(java.lang.String logmessage)
logging the timestamp and the fatal message
Parameters:
logmessage - : to be logged message

fatal

public void fatal(java.lang.Throwable e)
logging the timestamp and the fatal exception
Parameters:
e -

error

public void error(java.lang.String logmessage,
                  java.lang.Object caller)
logging the class name and the error message
Parameters:
logmessage - : to be logged message
caller - : the object to call this method

error

public void error(java.lang.String logmessage)
logging the timestamp and the error message
Parameters:
logmessage - : to be logged message

error

public void error(java.lang.Throwable e)
logging the timestamp and the error exception or error
Parameters:
e -

warn

public void warn(java.lang.String logmessage,
                 java.lang.Object caller)
logging the class name and the warn message
Parameters:
logmessage - : to be logged message
caller - : the object to call this method

warn

public void warn(java.lang.String logmessage)
logging the timestamp and the warn message
Parameters:
logmessage - : to be logged message

info

public void info(java.lang.String logmessage,
                 java.lang.Object caller)
logging the class name and the info message
Parameters:
logmessage - : to be logged message
caller - : the object to call this method

info

public void info(java.lang.String logmessage)
logging the timestamp and the info message
Parameters:
logmessage - : to be logged message

debug

public void debug(java.lang.String logmessage,
                  java.lang.Object caller)
logging the class name and the debug message
Parameters:
logmessage - : to be logged message
caller - : the object to call this method

debug

public void debug(java.lang.String logmessage)
logging the timestamp and the debug message
Parameters:
logmessage - : to be logged message

Oracle Secure Enterprise Search Java API Reference
10g Release 1 (10.1.6) Beta

B19032-01


Copyright © 2006, Oracle. All rights reserved.