Defines the levels that describe log events.
Inherits: EventSource
Description
The LogEventSource class defines the levels that descrie log events.
Fields
Instance methods
Debug
Debug
void Debug(string correlationId, string message)
- correlationId: string - (optional) transaction id to trace execution through a call chain.
- message: string - a human-readable message to log.
Error
Error
void Error(string correlationId, string message)
- correlationId: string - (optional) transaction id to trace execution through a call chain.
- message: string - a human-readable message to log.
Fatal
Fatal
void Fatal(string correlationId, string message)
- correlationId: string - (optional) transaction id to trace execution through a call chain.
- message: string - a human-readable message to log.
Info
Info
void Info(string correlationId, string message)
- correlationId: string - (optional) transaction id to trace execution through a call chain.
- message: string - a human-readable message to log.
Trace
Trace
void Trace(string correlationId, string message)
- correlationId: string - (optional) transaction id to trace execution through call chain.
- message: string - a human-readable message to log.
Warn
Warn
void Warn(string correlationId, string message)
- correlationId: string - (optional) transaction id to trace execution through call chain.
- message: string - a human-readable message to log.