Function LogCustom( _ ByVal entry As LogEntry, _ ByVal maxEntries As Integer _ ) As Boolean
Dim instance As ICustomLogger Dim entry As LogEntry Dim maxEntries As Integer Dim value As Boolean value = instance.LogCustom(entry, maxEntries)
bool LogCustom( LogEntry entry, int maxEntries )
bool LogCustom( LogEntry^ entry, int maxEntries )
Parameters
- entry
- The Log Message to log
- maxEntries
- If greater than zero, the maximum entries to keep before discarding old log entries (log rolling).
Return Value
True if successful