DB\IO error/warning log prefix remove, Admin\Backend acl default value check

This commit is contained in:
2023-07-14 15:10:03 +09:00
parent 5f223fb50d
commit 5dde52a309
2 changed files with 6 additions and 2 deletions

View File

@@ -814,13 +814,13 @@ class IO
switch ($id) {
case 'DB_ERROR':
$this->log->error(
$debug_id . ' :' . $prefix . $error_string,
$prefix . $error_string,
$context
);
break;
case 'DB_WARNING':
$this->log->warning(
$debug_id . ' :' . $prefix . $error_string,
$prefix . $error_string,
$context
);
break;