事件查看器中的行号

发布于 2024-11-16 17:00:50 字数 102 浏览 1 评论 0原文

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

I'm getting an exception in a windows service I'm working on. It isn't being caught by any of my try/catch blocks (which I have everywhere) but I can see it in the Windows Event Log. Is there a way to make the exception in the Event Log include line numbers?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情深如许 2024-11-23 17:00:50

订阅 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
}

Subscribe to AppDomain.CurrentDomain.UnhandledException event and you will not miss unhandled exception:

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

    // Service Run
}

static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
{
    // log exception e.ExceptionObject
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文