LoggerExtensions.LogError Metoda

Definicja

Przeciążenia

Nazwa Opis
LogError(ILogger, EventId, Exception, String, Object[])

Formatuje i zapisuje komunikat dziennika błędów.

LogError(ILogger, Exception, String, Object[])

Formatuje i zapisuje komunikat dziennika błędów.

LogError(ILogger, EventId, String, Object[])

Formatuje i zapisuje komunikat dziennika błędów.

LogError(ILogger, String, Object[])

Formatuje i zapisuje komunikat dziennika błędów.

LogError(ILogger, EventId, Exception, String, Object[])

Źródło:
LoggerExtensions.cs
Źródło:
LoggerExtensions.cs
Źródło:
LoggerExtensions.cs
Źródło:
LoggerExtensions.cs

Formatuje i zapisuje komunikat dziennika błędów.

public:
[System::Runtime::CompilerServices::Extension]
 static void LogError(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::EventId eventId, Exception ^ exception, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogError(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, Exception? exception, string? message, params object?[] args);
static member LogError : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.EventId * Exception * string * obj[] -> unit
<Extension()>
Public Sub LogError (logger As ILogger, eventId As EventId, exception As Exception, message As String, ParamArray args As Object())

Parametry

logger
ILogger

Element ILogger do zapisu.

eventId
EventId

Identyfikator zdarzenia skojarzony z dziennikiem.

exception
Exception

Wyjątek do rejestrowania.

message
String

Formatuj ciąg komunikatu dziennika w formacie szablonu wiadomości. Przykład: "User {User} logged in from {Address}".

args
Object[]

Tablica obiektów zawierająca zero lub więcej obiektów do sformatowania.

Przykłady

logger.LogError(0, exception, "Error while processing request from {Address}", address)

Dotyczy

LogError(ILogger, Exception, String, Object[])

Źródło:
LoggerExtensions.cs
Źródło:
LoggerExtensions.cs
Źródło:
LoggerExtensions.cs
Źródło:
LoggerExtensions.cs

Formatuje i zapisuje komunikat dziennika błędów.

public:
[System::Runtime::CompilerServices::Extension]
 static void LogError(Microsoft::Extensions::Logging::ILogger ^ logger, Exception ^ exception, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogError(this Microsoft.Extensions.Logging.ILogger logger, Exception? exception, string? message, params object?[] args);
static member LogError : Microsoft.Extensions.Logging.ILogger * Exception * string * obj[] -> unit
<Extension()>
Public Sub LogError (logger As ILogger, exception As Exception, message As String, ParamArray args As Object())

Parametry

logger
ILogger

Element ILogger do zapisu.

exception
Exception

Wyjątek do rejestrowania.

message
String

Formatuj ciąg komunikatu dziennika w formacie szablonu wiadomości. Przykład: "User {User} logged in from {Address}".

args
Object[]

Tablica obiektów zawierająca zero lub więcej obiektów do sformatowania.

Przykłady

logger.LogError(exception, "Error while processing request from {Address}", address)

Dotyczy

LogError(ILogger, EventId, String, Object[])

Źródło:
LoggerExtensions.cs
Źródło:
LoggerExtensions.cs
Źródło:
LoggerExtensions.cs
Źródło:
LoggerExtensions.cs

Formatuje i zapisuje komunikat dziennika błędów.

public:
[System::Runtime::CompilerServices::Extension]
 static void LogError(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::EventId eventId, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogError(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, string? message, params object?[] args);
static member LogError : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.EventId * string * obj[] -> unit
<Extension()>
Public Sub LogError (logger As ILogger, eventId As EventId, message As String, ParamArray args As Object())

Parametry

logger
ILogger

Element ILogger do zapisu.

eventId
EventId

Identyfikator zdarzenia skojarzony z dziennikiem.

message
String

Formatuj ciąg komunikatu dziennika w formacie szablonu wiadomości. Przykład: "User {User} logged in from {Address}".

args
Object[]

Tablica obiektów zawierająca zero lub więcej obiektów do sformatowania.

Przykłady

logger.LogError(0, "Processing request from {Address}", address)

Dotyczy

LogError(ILogger, String, Object[])

Źródło:
LoggerExtensions.cs
Źródło:
LoggerExtensions.cs
Źródło:
LoggerExtensions.cs
Źródło:
LoggerExtensions.cs

Formatuje i zapisuje komunikat dziennika błędów.

public:
[System::Runtime::CompilerServices::Extension]
 static void LogError(Microsoft::Extensions::Logging::ILogger ^ logger, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogError(this Microsoft.Extensions.Logging.ILogger logger, string? message, params object?[] args);
static member LogError : Microsoft.Extensions.Logging.ILogger * string * obj[] -> unit
<Extension()>
Public Sub LogError (logger As ILogger, message As String, ParamArray args As Object())

Parametry

logger
ILogger

Element ILogger do zapisu.

message
String

Formatuj ciąg komunikatu dziennika w formacie szablonu wiadomości. Przykład: "User {User} logged in from {Address}".

args
Object[]

Tablica obiektów zawierająca zero lub więcej obiektów do sformatowania.

Przykłady

logger.LogError("Processing request from {Address}", address)

Dotyczy