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.
CGIプログラムでエラーメッセージをログに記録する標準的な方法は何ですか。Apache(/ var / www / cgi-bin)によって実行されるCGIプログラムでcoutまたはprintfを使用すると、メッセージがログに記録されていない間、通信が中断されます。通信とアプリケーションの実行を中断せずに、エラーメッセージをApacheログファイルにリダイレクトするにはどうすればよいですか?
cerrまたは:を使用してみてください
fprintf(stderr, "log messages");