LoggerExtensions.LogDebug Metoda
Definice
Přetížení
| LogDebug(ILogger, String, Object[]) |
Formátuje a zapisuje zprávu protokolu ladění.Formats and writes a debug log message. |
| LogDebug(ILogger, EventId, String, Object[]) |
Formátuje a zapisuje zprávu protokolu ladění.Formats and writes a debug log message. |
| LogDebug(ILogger, Exception, String, Object[]) |
Formátuje a zapisuje zprávu protokolu ladění.Formats and writes a debug log message. |
| LogDebug(ILogger, EventId, Exception, String, Object[]) |
Formátuje a zapisuje zprávu protokolu ladění.Formats and writes a debug log message. |
LogDebug(ILogger, String, Object[])
Formátuje a zapisuje zprávu protokolu ladění.Formats and writes a debug log message.
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);
static member LogDebug : Microsoft.Extensions.Logging.ILogger * string * obj[] -> unit
<Extension()>
Public Sub LogDebug (logger As ILogger, message As String, ParamArray args As Object())
Parametry
- message
- String
Řetězec formátu zprávy protokolu ve formátu šablony zprávyFormat string of the log message in message template format. Příklad:Example: "User {User} logged in from {Address}"
- args
- Object[]
Pole objektu, které obsahuje objekty k formátování. Pole nemusí obsahovat žádný objekt.An object array that contains zero or more objects to format.
Příklady
logger.LogDebug("Processing request from {Address}", address)
Platí pro
LogDebug(ILogger, EventId, String, Object[])
Formátuje a zapisuje zprávu protokolu ladění.Formats and writes a debug log message.
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);
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())
Parametry
- eventId
- EventId
ID události přidružené k protokoluThe event id associated with the log.
- message
- String
Řetězec formátu zprávy protokolu ve formátu šablony zprávyFormat string of the log message in message template format. Příklad:Example: "User {User} logged in from {Address}"
- args
- Object[]
Pole objektu, které obsahuje objekty k formátování. Pole nemusí obsahovat žádný objekt.An object array that contains zero or more objects to format.
Příklady
logger.LogDebug(0, "Processing request from {Address}", address)
Platí pro
LogDebug(ILogger, Exception, String, Object[])
Formátuje a zapisuje zprávu protokolu ladění.Formats and writes a debug log message.
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);
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())
Parametry
- exception
- Exception
Výjimka, která se má protokolovatThe exception to log.
- message
- String
Řetězec formátu zprávy protokolu ve formátu šablony zprávyFormat string of the log message in message template format. Příklad:Example: "User {User} logged in from {Address}"
- args
- Object[]
Pole objektu, které obsahuje objekty k formátování. Pole nemusí obsahovat žádný objekt.An object array that contains zero or more objects to format.
Příklady
logger.LogDebug(exception, "Error while processing request from {Address}", address)
Platí pro
LogDebug(ILogger, EventId, Exception, String, Object[])
Formátuje a zapisuje zprávu protokolu ladění.Formats and writes a debug log message.
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);
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())
Parametry
- eventId
- EventId
ID události přidružené k protokoluThe event id associated with the log.
- exception
- Exception
Výjimka, která se má protokolovatThe exception to log.
- message
- String
Řetězec formátu zprávy protokolu ve formátu šablony zprávyFormat string of the log message in message template format. Příklad:Example: "User {User} logged in from {Address}"
- args
- Object[]
Pole objektu, které obsahuje objekty k formátování. Pole nemusí obsahovat žádný objekt.An object array that contains zero or more objects to format.
Příklady
logger.LogDebug(0, exception, "Error while processing request from {Address}", address)