LoggerExtensions.LogInformation Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
LogInformation(ILogger, String, Object[]) |
Formatuje i zapisuje komunikat dziennika informacyjnego. |
LogInformation(ILogger, EventId, String, Object[]) |
Formatuje i zapisuje komunikat dziennika informacyjnego. |
LogInformation(ILogger, Exception, String, Object[]) |
Formatuje i zapisuje komunikat dziennika informacyjnego. |
LogInformation(ILogger, EventId, Exception, String, Object[]) |
Formatuje i zapisuje komunikat dziennika informacyjnego. |
LogInformation(ILogger, String, Object[])
Formatuje i zapisuje komunikat dziennika informacyjnego.
public:
[System::Runtime::CompilerServices::Extension]
static void LogInformation(Microsoft::Extensions::Logging::ILogger ^ logger, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogInformation (this Microsoft.Extensions.Logging.ILogger logger, string message, params object[] args);
public static void LogInformation (this Microsoft.Extensions.Logging.ILogger logger, string? message, params object?[] args);
static member LogInformation : Microsoft.Extensions.Logging.ILogger * string * obj[] -> unit
<Extension()>
Public Sub LogInformation (logger As ILogger, message As String, ParamArray args As Object())
Parametry
- message
- String
Formatowanie ciągu komunikatu dziennika w formacie szablonu komunikatu. Przykład: "Użytkownik {User} zalogował się z witryny {Address}"
- args
- Object[]
Tablica obiektów zawiera zero lub więcej obiektów do sformatowania.
Przykłady
logger.LogInformation("Processing request from {Address}", address)
Dotyczy
LogInformation(ILogger, EventId, String, Object[])
Formatuje i zapisuje komunikat dziennika informacyjnego.
public:
[System::Runtime::CompilerServices::Extension]
static void LogInformation(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::EventId eventId, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogInformation (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, string message, params object[] args);
public static void LogInformation (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, string? message, params object?[] args);
static member LogInformation : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.EventId * string * obj[] -> unit
<Extension()>
Public Sub LogInformation (logger As ILogger, eventId As EventId, message As String, ParamArray args As Object())
Parametry
- eventId
- EventId
Identyfikator zdarzenia skojarzony z dziennikiem.
- message
- String
Formatowanie ciągu komunikatu dziennika w formacie szablonu komunikatu. Przykład: "Użytkownik {User} zalogował się z witryny {Address}"
- args
- Object[]
Tablica obiektów zawiera zero lub więcej obiektów do sformatowania.
Przykłady
logger.LogInformation(0, "Processing request from {Address}", address)
Dotyczy
LogInformation(ILogger, Exception, String, Object[])
Formatuje i zapisuje komunikat dziennika informacyjnego.
public:
[System::Runtime::CompilerServices::Extension]
static void LogInformation(Microsoft::Extensions::Logging::ILogger ^ logger, Exception ^ exception, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogInformation (this Microsoft.Extensions.Logging.ILogger logger, Exception exception, string message, params object[] args);
public static void LogInformation (this Microsoft.Extensions.Logging.ILogger logger, Exception? exception, string? message, params object?[] args);
static member LogInformation : Microsoft.Extensions.Logging.ILogger * Exception * string * obj[] -> unit
<Extension()>
Public Sub LogInformation (logger As ILogger, exception As Exception, message As String, ParamArray args As Object())
Parametry
- exception
- Exception
Wyjątek do rejestrowania.
- message
- String
Formatowanie ciągu komunikatu dziennika w formacie szablonu komunikatu. Przykład: "Użytkownik {User} zalogował się z witryny {Address}"
- args
- Object[]
Tablica obiektów zawiera zero lub więcej obiektów do sformatowania.
Przykłady
logger.LogInformation(exception, "Error while processing request from {Address}", address)
Dotyczy
LogInformation(ILogger, EventId, Exception, String, Object[])
Formatuje i zapisuje komunikat dziennika informacyjnego.
public:
[System::Runtime::CompilerServices::Extension]
static void LogInformation(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::EventId eventId, Exception ^ exception, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogInformation (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, Exception exception, string message, params object[] args);
public static void LogInformation (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, Exception? exception, string? message, params object?[] args);
static member LogInformation : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.EventId * Exception * string * obj[] -> unit
<Extension()>
Public Sub LogInformation (logger As ILogger, eventId As EventId, exception As Exception, message As String, ParamArray args As Object())
Parametry
- eventId
- EventId
Identyfikator zdarzenia skojarzony z dziennikiem.
- exception
- Exception
Wyjątek do rejestrowania.
- message
- String
Formatowanie ciągu komunikatu dziennika w formacie szablonu komunikatu. Przykład: "Użytkownik {User} zalogował się z witryny {Address}"
- args
- Object[]
Tablica obiektów zawiera zero lub więcej obiektów do sformatowania.
Przykłady
logger.LogInformation(0, exception, "Error while processing request from {Address}", address)