Hi
I'm having an issue with setting up the config file to do what I want. Basically i'm trying to the following:
if (log.Level is error)
{
GenerateEmailWithContext(logLevel.Debug, 50)
}
function GenerateEmailWithContext(var minLogLevel, int maxNoOfMessages)
{
}
Basically I want to show the context of how the application got to the error so that it will help to reproduce/debug it.
Thanks for you help! ;)