LoggerExtensions.LogDebug Metodo

Definizione

Overload

LogDebug(ILogger, String, Object[])

Formatta e scrive un messaggio di log di debug.

LogDebug(ILogger, EventId, String, Object[])

Formatta e scrive un messaggio di log di debug.

LogDebug(ILogger, Exception, String, Object[])

Formatta e scrive un messaggio di log di debug.

LogDebug(ILogger, EventId, Exception, String, Object[])

Formatta e scrive un messaggio di log di debug.

LogDebug(ILogger, String, Object[])

Formatta e scrive un messaggio di log di debug.

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

Parametri

logger
ILogger

ILogger in cui scrivere.

message
String

Stringa di formato del messaggio del log nel formato del modello di messaggio. Esempio: "User {User} logged in from {Address}"

args
Object[]

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

Esempio

logger.LogDebug("Processing request from {Address}", address)

Si applica a

LogDebug(ILogger, EventId, String, Object[])

Formatta e scrive un messaggio di log di debug.

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

Parametri

logger
ILogger

ILogger in cui scrivere.

eventId
EventId

ID evento associato al log.

message
String

Stringa di formato del messaggio del log nel formato del modello di messaggio. Esempio: "User {User} logged in from {Address}"

args
Object[]

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

Esempio

logger.LogDebug(0, "Processing request from {Address}", address)

Si applica a

LogDebug(ILogger, Exception, String, Object[])

Formatta e scrive un messaggio di log di debug.

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

Parametri

logger
ILogger

ILogger in cui scrivere.

exception
Exception

Eccezione da registrare.

message
String

Stringa di formato del messaggio del log nel formato del modello di messaggio. Esempio: "User {User} logged in from {Address}"

args
Object[]

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

Esempio

logger.LogDebug(exception, "Error while processing request from {Address}", address)

Si applica a

LogDebug(ILogger, EventId, Exception, String, Object[])

Formatta e scrive un messaggio di log di debug.

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

Parametri

logger
ILogger

ILogger in cui scrivere.

eventId
EventId

ID evento associato al log.

exception
Exception

Eccezione da registrare.

message
String

Stringa di formato del messaggio del log nel formato del modello di messaggio. Esempio: "User {User} logged in from {Address}"

args
Object[]

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

Esempio

logger.LogDebug(0, exception, "Error while processing request from {Address}", address)

Si applica a