LoggerExtensions.LogTrace Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Aşırı Yüklemeler
LogTrace(ILogger, String, Object[]) |
İzleme günlüğü iletisini biçimlendirip yazar. |
LogTrace(ILogger, EventId, String, Object[]) |
İzleme günlüğü iletisini biçimlendirip yazar. |
LogTrace(ILogger, Exception, String, Object[]) |
İzleme günlüğü iletisini biçimlendirip yazar. |
LogTrace(ILogger, EventId, Exception, String, Object[]) |
İzleme günlüğü iletisini biçimlendirip yazar. |
LogTrace(ILogger, String, Object[])
İzleme günlüğü iletisini biçimlendirip yazar.
public:
[System::Runtime::CompilerServices::Extension]
static void LogTrace(Microsoft::Extensions::Logging::ILogger ^ logger, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogTrace (this Microsoft.Extensions.Logging.ILogger logger, string message, params object[] args);
public static void LogTrace (this Microsoft.Extensions.Logging.ILogger logger, string? message, params object?[] args);
static member LogTrace : Microsoft.Extensions.Logging.ILogger * string * obj[] -> unit
<Extension()>
Public Sub LogTrace (logger As ILogger, message As String, ParamArray args As Object())
Parametreler
- message
- String
Günlük iletisinin dizesini ileti şablonu biçiminde biçimlendirin. Örnek: "{User} kullanıcısı {Address} adresinden oturum açtı"
- args
- Object[]
Biçimlendirilecek için sıfır veya daha fazla nesne içeren bir nesne dizisi.
Örnekler
logger.LogTrace("Processing request from {Address}", address)
Şunlara uygulanır
LogTrace(ILogger, EventId, String, Object[])
İzleme günlüğü iletisini biçimlendirip yazar.
public:
[System::Runtime::CompilerServices::Extension]
static void LogTrace(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::EventId eventId, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogTrace (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, string message, params object[] args);
public static void LogTrace (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, string? message, params object?[] args);
static member LogTrace : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.EventId * string * obj[] -> unit
<Extension()>
Public Sub LogTrace (logger As ILogger, eventId As EventId, message As String, ParamArray args As Object())
Parametreler
- eventId
- EventId
Günlükle ilişkili olay kimliği.
- message
- String
Günlük iletisinin dizesini ileti şablonu biçiminde biçimlendirin. Örnek: "{User} kullanıcısı {Address} adresinden oturum açtı"
- args
- Object[]
Biçimlendirilecek için sıfır veya daha fazla nesne içeren bir nesne dizisi.
Örnekler
logger.LogTrace(0, "Processing request from {Address}", address)
Şunlara uygulanır
LogTrace(ILogger, Exception, String, Object[])
İzleme günlüğü iletisini biçimlendirip yazar.
public:
[System::Runtime::CompilerServices::Extension]
static void LogTrace(Microsoft::Extensions::Logging::ILogger ^ logger, Exception ^ exception, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogTrace (this Microsoft.Extensions.Logging.ILogger logger, Exception exception, string message, params object[] args);
public static void LogTrace (this Microsoft.Extensions.Logging.ILogger logger, Exception? exception, string? message, params object?[] args);
static member LogTrace : Microsoft.Extensions.Logging.ILogger * Exception * string * obj[] -> unit
<Extension()>
Public Sub LogTrace (logger As ILogger, exception As Exception, message As String, ParamArray args As Object())
Parametreler
- exception
- Exception
Günlüğe kaydetme özel durumu.
- message
- String
Günlük iletisinin dizesini ileti şablonu biçiminde biçimlendirin. Örnek: "{User} kullanıcısı {Address} adresinden oturum açtı"
- args
- Object[]
Biçimlendirilecek için sıfır veya daha fazla nesne içeren bir nesne dizisi.
Örnekler
logger.LogTrace(exception, "Error while processing request from {Address}", address)
Şunlara uygulanır
LogTrace(ILogger, EventId, Exception, String, Object[])
İzleme günlüğü iletisini biçimlendirip yazar.
public:
[System::Runtime::CompilerServices::Extension]
static void LogTrace(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::EventId eventId, Exception ^ exception, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogTrace (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, Exception exception, string message, params object[] args);
public static void LogTrace (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, Exception? exception, string? message, params object?[] args);
static member LogTrace : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.EventId * Exception * string * obj[] -> unit
<Extension()>
Public Sub LogTrace (logger As ILogger, eventId As EventId, exception As Exception, message As String, ParamArray args As Object())
Parametreler
- eventId
- EventId
Günlükle ilişkili olay kimliği.
- exception
- Exception
Günlüğe kaydetme özel durumu.
- message
- String
Günlük iletisinin dizesini ileti şablonu biçiminde biçimlendirin. Örnek: "{User} kullanıcısı {Address} adresinden oturum açtı"
- args
- Object[]
Biçimlendirilecek için sıfır veya daha fazla nesne içeren bir nesne dizisi.
Örnekler
logger.LogTrace(0, exception, "Error while processing request from {Address}", address)