This seems like it should be quite simple, but I'm not an expert (or anywhere near) with regards to both 'frameworks' involved here.
Part of our build pipeline runs our unit tests using the nunit console runner.
We also use log4net and configure a console appender and a Rolling File Appender The console appender is useful for QA when they run the tests, so they don't have to hunt out the file. So I can't just get rid of it and I can't get rid of the file appender as that is important.
What I've noticed is that my nunit logs contain all the console output from my application (that is already being written to file) and making it very hard to parse and taking up tons of space.
Is there a way to take the console logging the NUnit test into the file and ignore the stuff coming from log4net?