Instead of fatal error triggering, turn off file logging and log the error elsewhere
This commit is contained in:
parent
8aebcf7337
commit
de0bbf7e04
|
@ -397,7 +397,8 @@ class Logger {
|
||||||
if ( !error_log($message."\n", 3, $this->logFile) ) {
|
if ( !error_log($message."\n", 3, $this->logFile) ) {
|
||||||
if ( strnatcmp(phpversion(), '5.2.0') >= 0 ) {
|
if ( strnatcmp(phpversion(), '5.2.0') >= 0 ) {
|
||||||
$error = error_get_last();
|
$error = error_get_last();
|
||||||
trigger_error("Can't write to log file '".$this->logFile."': ".$error['message'].' @ '.$error['file'].'/'.$error['line'], E_USER_ERROR);
|
$this->fileLevel = self::NOLOG;
|
||||||
|
Error("Can't write to log file '".$this->logFile."': ".$error['message'].' @ '.$error['file'].'/'.$error['line'], E_USER_ERROR);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if ( $this->logFd ) {
|
} else if ( $this->logFd ) {
|
||||||
|
|
Loading…
Reference in New Issue