de.bea.domingo
Interface DLog

All Superinterfaces:
DBase, java.io.Serializable
All Known Implementing Classes:
LogProxy

public interface DLog
extends DBase

Enables you to record actions and errors that take place during a program's execution. You can record actions and errors in.

Author:
Kurt Riede

Method Summary
 void logAction(java.lang.String text)
          Records an action in a log.
 void logError(int code, java.lang.String text)
          Records an error in a log.
 void openNotesLog(java.lang.String server, java.lang.String database)
          Opens a notes database as the log target.
 
Methods inherited from interface de.bea.domingo.DBase
equals, hashCode, toString
 

Method Detail

openNotesLog

void openNotesLog(java.lang.String server,
                  java.lang.String database)
Opens a notes database as the log target.

Parameters:
server - notes server name
database - notes database filename

logError

void logError(int code,
              java.lang.String text)
Records an error in a log.

Parameters:
code - a number indicating which error occurred.
text - a description of the error that occurred, as you want it to appear in the log.

logAction

void logAction(java.lang.String text)
Records an action in a log.

Parameters:
text - a description of the action, as you want it to appear in the log.


Domingo Java-API