メインコンテンツまでスキップ

Diagnostics.Trace

トレースが有効になっていて値を返す場合は、トレース エントリを記述します。

Syntax

Diagnostics.Trace(
traceLevel as number,
message as any,
value as any,
optional delayed as logical
) as any

Remarks

トレースが有効になっていて value を返す場合は、トレース message を記述します。オプション パラメーター delayed は、メッセージがトレースされるまで value の評価を遅らせるかどうかを指定します。traceLevel には次のいずれかの値を指定できます: TraceLevel.CriticalTraceLevel.ErrorTraceLevel.WarningTraceLevel.InformationTraceLevel.Verbose

Examples

Example #1

Text.From 関数を呼び出す前にメッセージをトレースし、結果を返します。

Diagnostics.Trace(TraceLevel.Information, "TextValueFromNumber", () => Text.From(123), true)

Result:

"123"

Category

Diagnostics