/usr/share/doc/cpanel-php84-log/examples
NameSizeModeActions
composite.php3020644editdlrm
console.php1480644editdlrm
display.php2700644editdlrm
error_log.php1680644editdlrm
file.php2100644editdlrm
firebug.php2080644editdlrm
mail.php2200644editdlrm
null.php1320644editdlrm
observer_mail.php6720644editdlrm
pear_error_handler.php6190644editdlrm
php_error_handler.php7670644editdlrm
sql.php2140644editdlrm
sqlite.php4820644editdlrm
syslog.php1550644editdlrm
win.php2020644editdlrm
Edit: /usr/share/doc/cpanel-php84-log/examples/observer_mail.php (672B)
to = $conf['to']; $this->subject = $conf['subject']; $this->pattern = $conf['pattern']; } public function notify($event): void { if (preg_match($this->pattern, $event['message']) != 0) { mail($this->to, $this->subject, $event['message']); } } } ?>