gpt4 book ai didi

c# - 寻找.net核心的容器的stdout和stderr

转载 作者:行者123 更新时间:2023-12-02 18:48:27 32 4
gpt4 key购买 nike

正确地说下面的代码会将自定义日志发送到.net核心中的Docker容器的stdout和stderr吗?

console.Writeline(...)
console.error(..)

最佳答案

如果您的意思是Console.WriteLine(),是的:

Writes the specified string value, followed by the current line terminator, to the standard output stream.
https://msdn.microsoft.com/en-us/library/aa324763(v=vs.71).aspx



没有 Console.Error()这样的方法,但是有 Console.Error stream property(它是stderr),可以使用 WriteLine:
Console.Error.WriteLine("Oh no!");

(还有 Console.Out,它是标准输出流。)

关于c# - 寻找.net核心的容器的stdout和stderr,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52112637/

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