Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
Log.Debug("This is a message from a specific thread", new []LogData
{
    new{ KeyValuePair<string, object>("ThreadId", ThreadHelper.GetCurrentThreadId()) threadId }
});

Then the log data will be available in theĀ LogData of theĀ LogEntry:

...