LoggerExtensions.LogError Yöntem
Tanım
Aşırı Yüklemeler
| LogError(ILogger, EventId, Exception, String, Object[]) |
Bir hata günlüğü iletisi biçimlendirir ve yazar.Formats and writes an error log message. |
| LogError(ILogger, Exception, String, Object[]) |
Bir hata günlüğü iletisi biçimlendirir ve yazar.Formats and writes an error log message. |
| LogError(ILogger, EventId, String, Object[]) |
Bir hata günlüğü iletisi biçimlendirir ve yazar.Formats and writes an error log message. |
| LogError(ILogger, String, Object[]) |
Bir hata günlüğü iletisi biçimlendirir ve yazar.Formats and writes an error log message. |
LogError(ILogger, EventId, Exception, String, Object[])
Bir hata günlüğü iletisi biçimlendirir ve yazar.Formats and writes an error log message.
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())
Parametreler
- eventId
- EventId
Günlük ile ilişkili olay kimliği.The event id associated with the log.
- exception
- Exception
Günlüğe kaydedilecek özel durum.The exception to log.
- message
- String
İleti şablonu biçimindeki günlük iletisinin biçim dizesi.Format string of the log message in message template format. Örnek:Example: "User {User} logged in from {Address}"
- args
- Object[]
Biçimlendirilecek için sıfır veya daha fazla nesne içeren bir nesne dizisi.An object array that contains zero or more objects to format.
Örnekler
logger.LogError(0, exception, "Error while processing request from {Address}", address)
Şunlara uygulanır
LogError(ILogger, Exception, String, Object[])
Bir hata günlüğü iletisi biçimlendirir ve yazar.Formats and writes an error log message.
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())
Parametreler
- exception
- Exception
Günlüğe kaydedilecek özel durum.The exception to log.
- message
- String
İleti şablonu biçimindeki günlük iletisinin biçim dizesi.Format string of the log message in message template format. Örnek:Example: "User {User} logged in from {Address}"
- args
- Object[]
Biçimlendirilecek için sıfır veya daha fazla nesne içeren bir nesne dizisi.An object array that contains zero or more objects to format.
Örnekler
logger.LogError(exception, "Error while processing request from {Address}", address)
Şunlara uygulanır
LogError(ILogger, EventId, String, Object[])
Bir hata günlüğü iletisi biçimlendirir ve yazar.Formats and writes an error log message.
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())
Parametreler
- eventId
- EventId
Günlük ile ilişkili olay kimliği.The event id associated with the log.
- message
- String
İleti şablonu biçimindeki günlük iletisinin biçim dizesi.Format string of the log message in message template format. Örnek:Example: "User {User} logged in from {Address}"
- args
- Object[]
Biçimlendirilecek için sıfır veya daha fazla nesne içeren bir nesne dizisi.An object array that contains zero or more objects to format.
Örnekler
logger.LogError(0, "Processing request from {Address}", address)
Şunlara uygulanır
LogError(ILogger, String, Object[])
Bir hata günlüğü iletisi biçimlendirir ve yazar.Formats and writes an error log message.
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())
Parametreler
- message
- String
İleti şablonu biçimindeki günlük iletisinin biçim dizesi.Format string of the log message in message template format. Örnek:Example: "User {User} logged in from {Address}"
- args
- Object[]
Biçimlendirilecek için sıfır veya daha fazla nesne içeren bir nesne dizisi.An object array that contains zero or more objects to format.
Örnekler
logger.LogError("Processing request from {Address}", address)