我的解决方案中有几个项目,其中大部分是 Windows 服务。我为每个配置了 log4net(为每个生成一个单独的日志文件),以及用于 log4net 的 Raygun appender。我想为每个项目捕获 UnhandledException 并了解它们的来源(在日志文件和 raygun 仪表板中),并且我想在一个地方为我的解决方案中的所有项目执行此操作。
因此,我创建了一个单独的静态类和方法来记录这些异常。
如何记录异常,以便我的日志文件显示生成该错误的类而不是 Logger 静态类(以及让 raygun.io 仪表板显示异常的正确来源)=>
Logger.UnhandledException [ERROR] - 现在这是错误的。它应该是异常起源的类名
我会为此创建一个线程安全的单例吗?这甚至是正确的方法吗?
静态类:
public static class Logger
{
private static readonly ILog Log = LogManager.GetLogger(Assembly.GetEntryAssembly().FullName);
public static void UnhandledException(object sender, UnhandledExceptionEventArgs e)
{
Log.Error(e);
}
}
视窗服务:
private static void Main(string[] args)
{
Configure.Serialization.Xml();
// Unhandled exceptions - subscribe to the event (I would do this to all my projects in the solution)
AppDomain.CurrentDomain.UnhandledException += Logger.UnhandledException;
}