LoggerExtensions.LogCritical Método
Definición
Sobrecargas
| LogCritical(ILogger, String, Object[]) |
Da formato y escribe un mensaje de registro crítico.Formats and writes a critical log message. |
| LogCritical(ILogger, EventId, String, Object[]) |
Da formato y escribe un mensaje de registro crítico.Formats and writes a critical log message. |
| LogCritical(ILogger, Exception, String, Object[]) |
Da formato y escribe un mensaje de registro crítico.Formats and writes a critical log message. |
| LogCritical(ILogger, EventId, Exception, String, Object[]) |
Da formato y escribe un mensaje de registro crítico.Formats and writes a critical log message. |
LogCritical(ILogger, String, Object[])
Da formato y escribe un mensaje de registro crítico.Formats and writes a critical log message.
public:
[System::Runtime::CompilerServices::Extension]
static void LogCritical(Microsoft::Extensions::Logging::ILogger ^ logger, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogCritical (this Microsoft.Extensions.Logging.ILogger logger, string message, params object[] args);
static member LogCritical : Microsoft.Extensions.Logging.ILogger * string * obj[] -> unit
<Extension()>
Public Sub LogCritical (logger As ILogger, message As String, ParamArray args As Object())
Parámetros
- message
- String
Cadena de formato del mensaje de registro en formato de plantilla de mensaje.Format string of the log message in message template format. Ejemplo:Example: "User {User} logged in from {Address}"
- args
- Object[]
Matriz de objetos que contiene cero o más objetos a los que se va a aplicar formato.An object array that contains zero or more objects to format.
Ejemplos
logger.LogCritical("Processing request from {Address}", address)
Se aplica a
LogCritical(ILogger, EventId, String, Object[])
Da formato y escribe un mensaje de registro crítico.Formats and writes a critical log message.
public:
[System::Runtime::CompilerServices::Extension]
static void LogCritical(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::EventId eventId, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogCritical (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, string message, params object[] args);
static member LogCritical : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.EventId * string * obj[] -> unit
<Extension()>
Public Sub LogCritical (logger As ILogger, eventId As EventId, message As String, ParamArray args As Object())
Parámetros
- eventId
- EventId
El identificador de evento asociado con el registro.The event id associated with the log.
- message
- String
Cadena de formato del mensaje de registro en formato de plantilla de mensaje.Format string of the log message in message template format. Ejemplo:Example: "User {User} logged in from {Address}"
- args
- Object[]
Matriz de objetos que contiene cero o más objetos a los que se va a aplicar formato.An object array that contains zero or more objects to format.
Ejemplos
logger.LogCritical(0, "Processing request from {Address}", address)
Se aplica a
LogCritical(ILogger, Exception, String, Object[])
Da formato y escribe un mensaje de registro crítico.Formats and writes a critical log message.
public:
[System::Runtime::CompilerServices::Extension]
static void LogCritical(Microsoft::Extensions::Logging::ILogger ^ logger, Exception ^ exception, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogCritical (this Microsoft.Extensions.Logging.ILogger logger, Exception exception, string message, params object[] args);
static member LogCritical : Microsoft.Extensions.Logging.ILogger * Exception * string * obj[] -> unit
<Extension()>
Public Sub LogCritical (logger As ILogger, exception As Exception, message As String, ParamArray args As Object())
Parámetros
- exception
- Exception
Excepción que se va a registrar.The exception to log.
- message
- String
Cadena de formato del mensaje de registro en formato de plantilla de mensaje.Format string of the log message in message template format. Ejemplo:Example: "User {User} logged in from {Address}"
- args
- Object[]
Matriz de objetos que contiene cero o más objetos a los que se va a aplicar formato.An object array that contains zero or more objects to format.
Ejemplos
logger.LogCritical(exception, "Error while processing request from {Address}", address)
Se aplica a
LogCritical(ILogger, EventId, Exception, String, Object[])
Da formato y escribe un mensaje de registro crítico.Formats and writes a critical log message.
public:
[System::Runtime::CompilerServices::Extension]
static void LogCritical(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::EventId eventId, Exception ^ exception, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogCritical (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, Exception exception, string message, params object[] args);
static member LogCritical : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.EventId * Exception * string * obj[] -> unit
<Extension()>
Public Sub LogCritical (logger As ILogger, eventId As EventId, exception As Exception, message As String, ParamArray args As Object())
Parámetros
- eventId
- EventId
El identificador de evento asociado con el registro.The event id associated with the log.
- exception
- Exception
Excepción que se va a registrar.The exception to log.
- message
- String
Cadena de formato del mensaje de registro en formato de plantilla de mensaje.Format string of the log message in message template format. Ejemplo:Example: "User {User} logged in from {Address}"
- args
- Object[]
Matriz de objetos que contiene cero o más objetos a los que se va a aplicar formato.An object array that contains zero or more objects to format.
Ejemplos
logger.LogCritical(0, exception, "Error while processing request from {Address}", address)