Implements the functionality to log the event.

Namespace:  CuttingEdge.Logging
Assembly:  CuttingEdge.Logging (in CuttingEdge.Logging.dll)

Syntax

Visual Basic (Declaration)
Protected Overrides Function LogInternal ( _
	entry As LogEntry _
) As Object
C#
protected override Object LogInternal(
	LogEntry entry
)
Visual C++
protected:
virtual Object^ LogInternal(
	LogEntry^ entry
) override
JavaScript
function logInternal(entry);

Parameters

entry
Type: CuttingEdge.Logging..::.LogEntry
The entry to log.

Return Value

Returns null.

Exceptions

ExceptionCondition
System..::.ArgumentNullExceptionThrown when entry is a null (Nothing in VB) reference.

See Also