0

I am a bit confused what way is the right way to log exceptions

 Log.Fatal(exception format, args);

or

  logger.FatalException("Got exception.", ex);
4

1 回答 1

2

似乎主要是一个偏好问题。我倾向于使用该log.FatalException("blah", ex)模型有两个原因。

  1. 这显然就是它的用途。
  2. 您可以控制异常在 nlog 配置中的显示格式。请参阅:https ://github.com/nlog/nlog/wiki/How-to-log-exceptions
于 2012-11-06T19:42:21.100 回答