Table of Contents

Method Trace

Namespace
WhalesSecret.TradeScriptLib.Logging
Assembly
WhalesSecret.TradeScriptLib.dll

Trace(string, string, string, int)

Writes the diagnostic message at the NLog.LogLevel.Trace level.

public void Trace(string message, string callerFilePath = "", string callerMemberName = "", int callerLineNumber = -1)

Parameters

message string

Log message.

callerFilePath string

Full path of the source file that contains the caller. This is the file path at the time of compile.

Do not pass any value.

callerMemberName string

Method or property name of the caller to the method.

Do not pass any value.

callerLineNumber int

Line number in the source file at which the method is called.

Do not pass any value.

Trace(ref TraceLogInterpolatedStringHandler, string, string, int)

Writes the diagnostic message at the NLog.LogLevel.Trace level.

public void Trace(ref TraceLogInterpolatedStringHandler builder, string callerFilePath = "", string callerMemberName = "", int callerLineNumber = -1)

Parameters

builder TraceLogInterpolatedStringHandler

Builder to provide the message to log.

callerFilePath string

Full path of the source file that contains the caller. This is the file path at the time of compile.

Do not pass any value.

callerMemberName string

Method or property name of the caller to the method.

Do not pass any value.

callerLineNumber int

Line number in the source file at which the method is called.

Do not pass any value.