I've implemented OpenLog into my DB, set the Options, and included the reference in my agents as such…
—  Clip  —
(Options)
Use "OpenLogFunctions"
Option Public
Option Explicit
—  End Clip  —
—  Clip  —
Sub Initialize
Set s = New NotesSession<br/>
Set db = s.CurrentDatabase<br/>
    ... blah, blah, blah ...<br/>
On Error Goto logError<br/>
<br/>
logError:
Call LogError<br/>
End<br/>
End Sub
—  End Clip  —
I'm getting a report of  "Error 0 on line 0 in function INITIALIZE:"  in the OpenLog database…   Nothing shows up in my Misc Errors log, and the agents are doing what they are supposed to do…