In VS2008, C#, I've created a unit test (VS unit test) that calls some code which in turn calls Log4Net and logs some information. This works.
If I create a thread in the unit test to call the same code I'm getting "Failed to parse config file" exception from Log4Net.
Any ideas why it would not be able to parse the config file from the created thread but can from the main thread?