我有以下基本代码:
<?php
//http://localhost/error_log.php
echo "write to the error_log";
error_log("error_log entry");
//error_log("error_log entry",0);
?>
当我导航到此页面时,我write to the error_log
在浏览器中看到。它甚至出现在 access_log 中/var/log/apache2/access.log
。
[my ip here] - - [18/Jan/2013:09:18:54 +0000] "GET /error_log.php HTTP/1.1" 200 314 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.97 Safari/537.11"
但是当我检查 error_log ie 时/var/log/apache2/error.log
,我看不到任何一个 error_log 消息。
为什么这些没有进入error_log?