LoggerExtensions.LogDebug Metódus
Definíció
Fontos
Egyes információk olyan, kiadás előtti termékekre vonatkoznak, amelyek a kiadásig még jelentősen módosulhatnak. A Microsoft nem vállal kifejezett vagy törvényi garanciát az itt megjelenő információért.
Túlterhelések
| Name | Description |
|---|---|
| LogDebug(ILogger, String, Object[]) |
Hibakeresési naplóüzenet formázása és írása. |
| LogDebug(ILogger, EventId, String, Object[]) |
Hibakeresési naplóüzenet formázása és írása. |
| LogDebug(ILogger, Exception, String, Object[]) |
Hibakeresési naplóüzenet formázása és írása. |
| LogDebug(ILogger, EventId, Exception, String, Object[]) |
Hibakeresési naplóüzenet formázása és írása. |
LogDebug(ILogger, String, Object[])
- Forrás:
- LoggerExtensions.cs
- Forrás:
- LoggerExtensions.cs
- Forrás:
- LoggerExtensions.cs
- Forrás:
- LoggerExtensions.cs
Hibakeresési naplóüzenet formázása és írása.
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())
Paraméterek
- message
- String
A naplóüzenet sztringjének formázása üzenetsablon formátumban. Példa: "User {User} logged in from {Address}".
- args
- Object[]
Olyan objektumtömb, amely nulla vagy több formázandó objektumot tartalmaz.
Példák
logger.LogDebug("Processing request from {Address}", address)
A következőre érvényes:
LogDebug(ILogger, EventId, String, Object[])
- Forrás:
- LoggerExtensions.cs
- Forrás:
- LoggerExtensions.cs
- Forrás:
- LoggerExtensions.cs
- Forrás:
- LoggerExtensions.cs
Hibakeresési naplóüzenet formázása és írása.
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())
Paraméterek
- eventId
- EventId
A naplóhoz társított eseményazonosító.
- message
- String
A naplóüzenet sztringjének formázása üzenetsablon formátumban. Példa: "User {User} logged in from {Address}".
- args
- Object[]
Olyan objektumtömb, amely nulla vagy több formázandó objektumot tartalmaz.
Példák
logger.LogDebug(0, "Processing request from {Address}", address)
A következőre érvényes:
LogDebug(ILogger, Exception, String, Object[])
- Forrás:
- LoggerExtensions.cs
- Forrás:
- LoggerExtensions.cs
- Forrás:
- LoggerExtensions.cs
- Forrás:
- LoggerExtensions.cs
Hibakeresési naplóüzenet formázása és írása.
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())
Paraméterek
- exception
- Exception
A naplózás kivétele.
- message
- String
A naplóüzenet sztringjének formázása üzenetsablon formátumban. Példa: "User {User} logged in from {Address}".
- args
- Object[]
Olyan objektumtömb, amely nulla vagy több formázandó objektumot tartalmaz.
Példák
logger.LogDebug(exception, "Error while processing request from {Address}", address)
A következőre érvényes:
LogDebug(ILogger, EventId, Exception, String, Object[])
- Forrás:
- LoggerExtensions.cs
- Forrás:
- LoggerExtensions.cs
- Forrás:
- LoggerExtensions.cs
- Forrás:
- LoggerExtensions.cs
Hibakeresési naplóüzenet formázása és írása.
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())
Paraméterek
- eventId
- EventId
A naplóhoz társított eseményazonosító.
- exception
- Exception
A naplózás kivétele.
- message
- String
A naplóüzenet sztringjének formázása üzenetsablon formátumban. Példa: "User {User} logged in from {Address}".
- args
- Object[]
Olyan objektumtömb, amely nulla vagy több formázandó objektumot tartalmaz.
Példák
logger.LogDebug(0, exception, "Error while processing request from {Address}", address)