外部コマンドのstdout/stderrをzapに送る
exec.Command
及び exec.CommandContext
で実行した外部コマンドの標準出力や標準エラー出力をzap
でログに記録するには、 zapio.Writer
を使うと良い。
logger, _ := zap.NewDevelopment()
w := &zapio.Writer{
Log: logger,
Level: zap.DebugLevel,
}
defer w.Close()
cmd := exec.Command("echo", "hello world")
cmd.Stdout = w
cmd.Stderr = w
cmd.Run()
参考
Author And Source
この問題について(外部コマンドのstdout/stderrをzapに送る), 我々は、より多くの情報をここで見つけました https://qiita.com/jkawamoto/items/6dbe35506270f934fe4d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .