gpt4 book ai didi

c# - 事件查看器中的行号

转载 作者:可可西里 更新时间:2023-11-01 14:15:14 26 4
gpt4 key购买 nike

我正在处理的 Windows 服务出现异常。它没有被我的任何 try/catch block (我到处都有)捕获,但我可以在 Windows 事件日志中看到它。有没有办法让事件日志中的异常包含行号?

最佳答案

订阅AppDomain.CurrentDomain.UnhandledException事件,你不会错过未处理的异常:

public static void Main()
{
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;

// Service Run
}

static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
{
// log exception e.ExceptionObject
}

关于c# - 事件查看器中的行号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6434903/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com