From: Alan Date: Wed, 13 Sep 2023 03:01:38 +0000 (+0800) Subject: log exceptions as well. X-Git-Url: http://git.roojs.org/?p=Pman.Base;a=commitdiff_plain;h=b8e1b33e8d2a5c8577041cd4836b645b85cef17c log exceptions as well. --- diff --git a/Pman.php b/Pman.php index 2ac52cf..5aed24b 100644 --- a/Pman.php +++ b/Pman.php @@ -1161,7 +1161,7 @@ class Pman extends HTML_FlexyFramework_Page || !empty($ff->database_is_readonly) || substr($act, 0, 7) === 'NOTICE-' ) { - if (substr($act, 0, 5) !== 'ERROR') { + if (!preg_match('/^(ERROR|EXCEPTION)/', $act)) { return false; } $str = $obj !== false ? "{$obj->tableName()}:{$obj->id} " : ''; @@ -1188,7 +1188,7 @@ class Pman extends HTML_FlexyFramework_Page $e->onInsert(isset($_REQUEST) ? $_REQUEST : array() , $this); - if (substr($act, 0, 5) !== 'ERROR') { + if (!preg_match('/^(ERROR|EXCEPTION)/', $act)) { return $e; } $str = $obj !== false ? "{$obj->tableName()}:{$obj->id} " : '';