Skip to main content

Diagnostics.Trace

เขียนรายการการติดตาม หากเปิดใช้งานการติดตามไว้ และคืนค่า

Syntax

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

Remarks

เขียนการติดตาม message หากเปิดใช้งานการติดตามไว้ และคืนค่า value พารามิเตอร์เสริม delayed จะกำหนดว่าจะหน่วงเวลาการประเมินค่า value จนกว่าจะมีการติดตามข้อความหรือไม่ traceLevel สามารถใช้หนึ่งในค่าต่อไปนี้ได้: TraceLevel.Critical TraceLevel.Error, TraceLevel.Warning, TraceLevel.Information, TraceLevel.Verbose

Examples

Example #1

ติดตามข้อความก่อนที่จะเรียกฟังก์ชัน Text.From และคืนค่าผลลัพธ์

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

Result:

"123"

Category

Diagnostics