AppDomain

作用域

var logger = NLog.Web.NLogBuilder.ConfigureNLog("nlog.config").GetCurrentClassLogger();
            AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler((o, e) =>
            {
                logger.Error($"Unhandled Exception.{JsonConvert.SerializeObject(e)}");
            });
            //currentDomain.FirstChanceException += new EventHandler((o, e) =>
            //{
            //    logger.Error($"FirstChance Exception.{JsonConvert.SerializeObject(e)}");
            //});

你可能感兴趣的:(C#)