ILogger.Log<TState> Metoda

Definicja

Zapisuje wpis dziennika.

public:
generic <typename TState>
 void Log(Microsoft::Extensions::Logging::LogLevel logLevel, Microsoft::Extensions::Logging::EventId eventId, TState state, Exception ^ exception, Func<TState, Exception ^, System::String ^> ^ formatter);
public void Log<TState> (Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, TState state, Exception exception, Func<TState,Exception,string> formatter);
public void Log<TState> (Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, TState state, Exception? exception, Func<TState,Exception?,string> formatter);
abstract member Log : Microsoft.Extensions.Logging.LogLevel * Microsoft.Extensions.Logging.EventId * 'State * Exception * Func<'State, Exception, string> -> unit
Public Sub Log(Of TState) (logLevel As LogLevel, eventId As EventId, state As TState, exception As Exception, formatter As Func(Of TState, Exception, String))

Parametry typu

TState

Typ obiektu do zapisania.

Parametry

logLevel
LogLevel

Wpis zostanie napisany na tym poziomie.

eventId
EventId

Identyfikator zdarzenia.

state
TState

Wpis do zapisania. Może być również obiektem.

exception
Exception

Wyjątek związany z tym wpisem.

formatter
Func<TState,Exception,String>

Funkcja umożliwiająca String utworzenie komunikatu dla elementów state i exception.

Dotyczy