gpt4 book ai didi

linux - 当部署到 Linux 环境时,.NET Core 中的 Environment.FailFast 会做什么?

转载 作者:太空宇宙 更新时间:2023-11-04 10:03:27 24 4
gpt4 key购买 nike

这个方法的文档说:

Immediately terminates a process after writing a message to the Windows Application event log, and then includes the message and optional exception information in error reporting to Microsoft.

但是当部署到没有事件日志或 Windows 错误报告的 Linux 环境时呢?

我希望能够以这种方式立即终止控制台应用程序,但不清楚这是否是正确的使用方法。 Linux 有更好的方法吗?

计划是让我的控制台应用程序在 Linux 容器中运行。我希望应用程序能够终止,从而导致容器终止,这样基础设施就可以启动一个新的容器。然而,我才刚刚开始使用 Docker(我的 Linux 技能很生疏)。所以我在这里不知所措......

我可能不得不启动一个小样本并进行修补,但我希望在这里提出问题,以防有人能提供更快的答案。

TIA

最佳答案

没有什么比尝试一下更好的了!

using System;

namespace testing
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
System.Environment.FailFast("oh shoot");
Console.WriteLine("Bye!");
}
}
}

给我

/tmp/testing$ dotnet run
Hello World!
FailFast:
oh shoot

at System.Environment.FailFast(System.String, System.Exception)
at System.Environment.FailFast(System.String)
at testing.Program.Main(System.String[])

我在 /var/log 中没有看到任何额外的日志消息。所以我猜它只是快速存在并将日志转储到控制台。

关于linux - 当部署到 Linux 环境时,.NET Core 中的 Environment.FailFast 会做什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54315054/

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