Logs a message with an associated exception.

Namespace:  Gallio.Runtime.Logging
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
protected abstract void LogImpl(
	LogSeverity severity,
	string message,
	ExceptionData exceptionData
)
Visual Basic (Declaration)
Protected MustOverride Sub LogImpl ( _
	severity As LogSeverity, _
	message As String, _
	exceptionData As ExceptionData _
)

Parameters

severity
Type: Gallio.Runtime.Logging..::.LogSeverity
The log message severity.
message
Type: System..::.String
The log message, not null.
exceptionData
Type: Gallio.Common.Diagnostics..::.ExceptionData
The associated exception data, or null if none.

See Also