$BlogSphere Debug
From WIKI for BlogSphere, a Lotus Domino Blog
Developers should use this notes.ini parameter to check if debugging should be enabled in BlogSphere.
To enable debugging, add the following line to your notes.ini:
- $BlogSphere_Debug=1
Developers can use that code sample to check if debugging is enabled:
Dim s As New NotesSession Dim inidebug As Integer Dim debug As Boolean inidebug = s.GetEnvironmentValue( "BlogSphere_Debug", False ) If inidebug = 1 Then debug = True Else debug = False End If
