Examples: OpenFileLog method

  1. This script opens a file called LOG.TXT on the C drive. Each action and error gets appended to the file in a separate line without writing over the existing contents of the file.
    Dim currentLog As New NotesLog( "Script log" )
    Call currentLog.OpenFileLog( "c:\log.txt" )
    '...log some actions and errors...
    Call currentLog.Close
  2. This script opens a file called SCRIPTS.TXT in the LOGS directory of the C drive. The existing contents of the file are removed before actions and errors get added to the file.
    Dim currentLog As New NotesLog( "Script log" )
    currentLog.OverwriteFile = True
    Call currentLog.OpenFileLog( "c:\logs\scripts.txt" )
    '...log some actions and errors...
    Call currentLog.Close