LoggerExtensions.Log Metodo

Definizione

Overload

Log(ILogger, LogLevel, String, Object[])

Formatta e scrive un messaggio di log al livello di registrazione specificato.

Log(ILogger, LogLevel, EventId, String, Object[])

Formatta e scrive un messaggio di log al livello di registrazione specificato.

Log(ILogger, LogLevel, Exception, String, Object[])

Formatta e scrive un messaggio di log al livello di registrazione specificato.

Log(ILogger, LogLevel, EventId, Exception, String, Object[])

Formatta e scrive un messaggio di log al livello di registrazione specificato.

Log(ILogger, LogLevel, String, Object[])

Formatta e scrive un messaggio di log al livello di registrazione specificato.

public:
[System::Runtime::CompilerServices::Extension]
 static void Log(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::LogLevel logLevel, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void Log (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.LogLevel logLevel, string message, params object[] args);
public static void Log (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.LogLevel logLevel, string? message, params object?[] args);
static member Log : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.LogLevel * string * obj[] -> unit
<Extension()>
Public Sub Log (logger As ILogger, logLevel As LogLevel, message As String, ParamArray args As Object())

Parametri

logger
ILogger

ILogger in cui scrivere.

logLevel
LogLevel

La voce verrà scritta in questo livello.

message
String

Stringa di formato del messaggio di log.

args
Object[]

Matrice di oggetti che contiene zero o più oggetti da formattare.

Si applica a

Log(ILogger, LogLevel, EventId, String, Object[])

Formatta e scrive un messaggio di log al livello di registrazione specificato.

public:
[System::Runtime::CompilerServices::Extension]
 static void Log(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::LogLevel logLevel, Microsoft::Extensions::Logging::EventId eventId, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void Log (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, string message, params object[] args);
public static void Log (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, string? message, params object?[] args);
static member Log : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.LogLevel * Microsoft.Extensions.Logging.EventId * string * obj[] -> unit
<Extension()>
Public Sub Log (logger As ILogger, logLevel As LogLevel, eventId As EventId, message As String, ParamArray args As Object())

Parametri

logger
ILogger

ILogger in cui scrivere.

logLevel
LogLevel

La voce verrà scritta in questo livello.

eventId
EventId

ID evento associato al log.

message
String

Stringa di formato del messaggio di log.

args
Object[]

Matrice di oggetti che contiene zero o più oggetti da formattare.

Si applica a

Log(ILogger, LogLevel, Exception, String, Object[])

Formatta e scrive un messaggio di log al livello di registrazione specificato.

public:
[System::Runtime::CompilerServices::Extension]
 static void Log(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::LogLevel logLevel, Exception ^ exception, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void Log (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.LogLevel logLevel, Exception exception, string message, params object[] args);
public static void Log (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.LogLevel logLevel, Exception? exception, string? message, params object?[] args);
static member Log : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.LogLevel * Exception * string * obj[] -> unit
<Extension()>
Public Sub Log (logger As ILogger, logLevel As LogLevel, exception As Exception, message As String, ParamArray args As Object())

Parametri

logger
ILogger

ILogger in cui scrivere.

logLevel
LogLevel

La voce verrà scritta in questo livello.

exception
Exception

Eccezione da registrare.

message
String

Stringa di formato del messaggio di log.

args
Object[]

Matrice di oggetti che contiene zero o più oggetti da formattare.

Si applica a

Log(ILogger, LogLevel, EventId, Exception, String, Object[])

Formatta e scrive un messaggio di log al livello di registrazione specificato.

public:
[System::Runtime::CompilerServices::Extension]
 static void Log(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::LogLevel logLevel, Microsoft::Extensions::Logging::EventId eventId, Exception ^ exception, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void Log (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, Exception exception, string message, params object[] args);
public static void Log (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, Exception? exception, string? message, params object?[] args);
static member Log : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.LogLevel * Microsoft.Extensions.Logging.EventId * Exception * string * obj[] -> unit
<Extension()>
Public Sub Log (logger As ILogger, logLevel As LogLevel, eventId As EventId, exception As Exception, message As String, ParamArray args As Object())

Parametri

logger
ILogger

ILogger in cui scrivere.

logLevel
LogLevel

La voce verrà scritta in questo livello.

eventId
EventId

ID evento associato al log.

exception
Exception

Eccezione da registrare.

message
String

Stringa di formato del messaggio di log.

args
Object[]

Matrice di oggetti che contiene zero o più oggetti da formattare.

Si applica a