Add a custom property to include in all log4net messages

12,789

You can use context properties e.g. like this:

ThreadContext.Properties["ID"] = yourID;

then you can access the property in the pattern string like this:

%property{ID}
Share:
12,789
Miral
Author by

Miral

I am .net developer working in a TDD/Agile environment. I have worked with WCF/MVC/NServiceBus...

Updated on June 26, 2022

Comments

  • Miral
    Miral almost 2 years

    I have a unique identifier which goes through the whole application. I want this 'ID' to be logged as a separate property, so that it's easy to find out in log files or from the database.