logAction (Log - Java)

Records an action in a log.

Defined in

Log

Syntax

public void logAction(String action)
    throws NotesException

Parameters

String action

A description of the action, as you want it to appear in the log.

Usage

The behavior of this method depends upon the type of log you open.

  • If you open a Domino® database using openNotesLog, this method creates a new document in the database. The A$ACTION item in the document contains the description.
  • If you open a mail memo using openMailLog, this method adds the description to the Body item of the memo, along with the current date and time.
  • If you open a file using openFileLog, this method adds the description to the next line of the file, along with the log's ProgramName and the current date and time.

Example