LoggerExtensions.LogInformation Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
LogInformation(ILogger, String, Object[]) |
Met en forme et écrit un message d’information dans le journal. |
LogInformation(ILogger, EventId, String, Object[]) |
Met en forme et écrit un message d’information dans le journal. |
LogInformation(ILogger, Exception, String, Object[]) |
Met en forme et écrit un message d’information dans le journal. |
LogInformation(ILogger, EventId, Exception, String, Object[]) |
Met en forme et écrit un message d’information dans le journal. |
LogInformation(ILogger, String, Object[])
Met en forme et écrit un message d’information dans le journal.
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())
Paramètres
- message
- String
Chaîne de format du message de journal dans le format du modèle de message. Exemple : « Utilisateur {User} connecté à partir de {Address} »
- args
- Object[]
Tableau d'objets contenant aucun ou plusieurs objets à mettre en forme.
Exemples
logger.LogInformation("Processing request from {Address}", address)
S’applique à
LogInformation(ILogger, EventId, String, Object[])
Met en forme et écrit un message d’information dans le journal.
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())
Paramètres
- eventId
- EventId
ID d’événement associé au journal.
- message
- String
Chaîne de format du message de journal dans le format du modèle de message. Exemple : « Utilisateur {User} connecté à partir de {Address} »
- args
- Object[]
Tableau d'objets contenant aucun ou plusieurs objets à mettre en forme.
Exemples
logger.LogInformation(0, "Processing request from {Address}", address)
S’applique à
LogInformation(ILogger, Exception, String, Object[])
Met en forme et écrit un message d’information dans le journal.
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())
Paramètres
- exception
- Exception
Exception à consigner.
- message
- String
Chaîne de format du message de journal dans le format du modèle de message. Exemple : « Utilisateur {User} connecté à partir de {Address} »
- args
- Object[]
Tableau d'objets contenant aucun ou plusieurs objets à mettre en forme.
Exemples
logger.LogInformation(exception, "Error while processing request from {Address}", address)
S’applique à
LogInformation(ILogger, EventId, Exception, String, Object[])
Met en forme et écrit un message d’information dans le journal.
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())
Paramètres
- eventId
- EventId
ID d’événement associé au journal.
- exception
- Exception
Exception à consigner.
- message
- String
Chaîne de format du message de journal dans le format du modèle de message. Exemple : « Utilisateur {User} connecté à partir de {Address} »
- args
- Object[]
Tableau d'objets contenant aucun ou plusieurs objets à mettre en forme.
Exemples
logger.LogInformation(0, exception, "Error while processing request from {Address}", address)