Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のプロセスは、いくつかのログ情報をコンソール ウィンドウに出力しました。バックグラウンド プロセスとして実行すると、出力ログはどこにありますか?
プロセスと開始方法によって異なります。に書き込む場合stdout(出力が通常端末にあることを考えると、おそらくそうです)、出力をファイルにリダイレクトできます
stdout
command > logfile &
からのエラー メッセージもログに記録する場合は、次stderrのようにします。
stderr
command > logfile 2> errorlogfile &
また
command > logfile 2>&1 &
すべてを 1 つのファイルにまとめます。