LoggerExtensions.LogTrace メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
| 名前 | 説明 |
|---|---|
| LogTrace(ILogger, String, Object[]) |
トレース ログ メッセージを書式設定して書き込みます。 |
| LogTrace(ILogger, EventId, String, Object[]) |
トレース ログ メッセージを書式設定して書き込みます。 |
| LogTrace(ILogger, Exception, String, Object[]) |
トレース ログ メッセージを書式設定して書き込みます。 |
| LogTrace(ILogger, EventId, Exception, String, Object[]) |
トレース ログ メッセージを書式設定して書き込みます。 |
LogTrace(ILogger, String, Object[])
トレース ログ メッセージを書式設定して書き込みます。
public:
[System::Runtime::CompilerServices::Extension]
static void LogTrace(Microsoft::Extensions::Logging::ILogger ^ logger, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogTrace(this Microsoft.Extensions.Logging.ILogger logger, string? message, params object?[] args);
static member LogTrace : Microsoft.Extensions.Logging.ILogger * string * obj[] -> unit
<Extension()>
Public Sub LogTrace (logger As ILogger, message As String, ParamArray args As Object())
パラメーター
- message
- String
ログ メッセージの文字列をメッセージ テンプレート形式で書式設定します。 例: "User {User} logged in from {Address}"。
- args
- Object[]
書式設定する 0 個以上のオブジェクトを含むオブジェクト配列。
例
logger.LogTrace("Processing request from {Address}", address)
適用対象
LogTrace(ILogger, EventId, String, Object[])
トレース ログ メッセージを書式設定して書き込みます。
public:
[System::Runtime::CompilerServices::Extension]
static void LogTrace(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::EventId eventId, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogTrace(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, string? message, params object?[] args);
static member LogTrace : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.EventId * string * obj[] -> unit
<Extension()>
Public Sub LogTrace (logger As ILogger, eventId As EventId, message As String, ParamArray args As Object())
パラメーター
- eventId
- EventId
ログに関連付けられているイベント ID。
- message
- String
ログ メッセージの文字列をメッセージ テンプレート形式で書式設定します。 例: "User {User} logged in from {Address}"。
- args
- Object[]
書式設定する 0 個以上のオブジェクトを含むオブジェクト配列。
例
logger.LogTrace(0, "Processing request from {Address}", address)
適用対象
LogTrace(ILogger, Exception, String, Object[])
トレース ログ メッセージを書式設定して書き込みます。
public:
[System::Runtime::CompilerServices::Extension]
static void LogTrace(Microsoft::Extensions::Logging::ILogger ^ logger, Exception ^ exception, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogTrace(this Microsoft.Extensions.Logging.ILogger logger, Exception? exception, string? message, params object?[] args);
static member LogTrace : Microsoft.Extensions.Logging.ILogger * Exception * string * obj[] -> unit
<Extension()>
Public Sub LogTrace (logger As ILogger, exception As Exception, message As String, ParamArray args As Object())
パラメーター
- exception
- Exception
ログに記録する例外。
- message
- String
ログ メッセージの文字列をメッセージ テンプレート形式で書式設定します。 例: "User {User} logged in from {Address}"。
- args
- Object[]
書式設定する 0 個以上のオブジェクトを含むオブジェクト配列。
例
logger.LogTrace(exception, "Error while processing request from {Address}", address)
適用対象
LogTrace(ILogger, EventId, Exception, String, Object[])
トレース ログ メッセージを書式設定して書き込みます。
public:
[System::Runtime::CompilerServices::Extension]
static void LogTrace(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::EventId eventId, Exception ^ exception, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogTrace(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, Exception? exception, string? message, params object?[] args);
static member LogTrace : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.EventId * Exception * string * obj[] -> unit
<Extension()>
Public Sub LogTrace (logger As ILogger, eventId As EventId, exception As Exception, message As String, ParamArray args As Object())
パラメーター
- eventId
- EventId
ログに関連付けられているイベント ID。
- exception
- Exception
ログに記録する例外。
- message
- String
ログ メッセージの文字列をメッセージ テンプレート形式で書式設定します。 例: "User {User} logged in from {Address}"。
- args
- Object[]
書式設定する 0 個以上のオブジェクトを含むオブジェクト配列。
例
logger.LogTrace(0, exception, "Error while processing request from {Address}", address)