Dim currentLog As New NotesLog( "Script log" )
Call currentLog.OpenFileLog( "c:¥log.txt" )
'...log some actions and errors...
Call currentLog.Close
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