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");