aswinfrancis
Need help finding memory leak [Answered]
Agreed. After some more analysis after I put this up I found the reason. The original Dev had a dictionary property that was meant to hold logger factories and then only create fresh ones if it wasn't there but the property would be created new every time as it wasn't static. Every time they call
New LoggerFactory().CreateLoggerNlog()
, a new dictionary property was created which in turn causes new loggerfactory instance to be created6 replies