Table of Contents

Class LogEntryParameters

Namespace
Lykke.Common.Log
Assembly
Lykke.Common.dll

Parameters of the log entry

public class LogEntryParameters
Inheritance
LogEntryParameters
Inherited Members
Extension Methods

Constructors

LogEntryParameters(string, string, string, string, string, int, string, object, DateTime?)

Creates parameters of the log entry

public LogEntryParameters(string appName, string appVersion, string envInfo, string callerFilePath, string process, int callerLineNumber, string message, object context, DateTime? moment)

Parameters

appName string

Name of the app, which made the entry

appVersion string

Version of the app, which made the entry

envInfo string

ENV_INFO environment variable of the app, which made the entry

callerFilePath string

Path of the source code file, where the entry was made

process string

Process within which the entry was made. Usually method name

callerLineNumber int

Source code file line number, where the entry was made

message string

Message of the entry

context object

Context of the entry

moment DateTime?

Moment when the entry was made

Properties

AppName

public string AppName { get; }

Property Value

string

AppVersion

public string AppVersion { get; }

Property Value

string

CallerFilePath

public string CallerFilePath { get; }

Property Value

string

CallerLineNumber

public int CallerLineNumber { get; }

Property Value

int

Context

public string Context { get; }

Property Value

string

EnvInfo

public string EnvInfo { get; }

Property Value

string

Message

public string Message { get; }

Property Value

string

Moment

public DateTime Moment { get; }

Property Value

DateTime

Process

public string Process { get; }

Property Value

string