I have code that is logging Exception.Message. However, I read an article which states that it\'s better to use Exception.ToString(). With the latt
Exception.Message
Exception.ToString()
Well, I'd say it depends what you want to see in the logs, doesn't it? If you're happy with what ex.Message provides, use that. Otherwise, use ex.toString() or even log the stack trace.