I wish to include the call stack (e.g. the methods that called me) in a log4net message. Is there a standard way of doing this?
(I know this will be slow, but I onl
If you are catching exceptions, then just log Exception.ToString(), as that will contain the full stack trace, and will be available as the normal log message.