私は次の基本的なコードを持っています:
<?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を確認すると、つまり/var/log/apache2/error.log
、error_logメッセージが表示されません。
これらがerror_logに入力されないのはなぜですか?