On Nov 23, 5:48 pm, Patrick Steele <
patrick.ste...@gmail.com> wrote:
> LogManager.GetLogger() is static and therefore can't be intercepted by
> Rhino Mocks. You may want to consider wrapping the functionality of
> your logging in your own interfaces. You can mock out those
> interfaces during testing, and implement a log4net implementation of
> those interfaces for runtime.
>
> ---