Keep everything lower case as is any upper case check have to go through fromName, this will convert to lowercase anyway
73 lines
2.8 KiB
PHP
73 lines
2.8 KiB
PHP
<?php // phpcs:ignore warning
|
|
|
|
/**
|
|
* @phan-file-suppress PhanTypeSuspiciousStringExpression
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
error_reporting(E_ALL | E_ERROR | E_WARNING | E_PARSE | E_COMPILE_ERROR);
|
|
|
|
ob_start();
|
|
|
|
// basic class test file
|
|
define('USE_DATABASE', false);
|
|
// sample config
|
|
require 'config.php';
|
|
// define log file id
|
|
$LOG_FILE_ID = 'classTest-error_msg';
|
|
ob_end_flush();
|
|
|
|
use CoreLibs\Logging\Logger\MessageLevel as ml;
|
|
|
|
$log = new CoreLibs\Logging\Logging([
|
|
'log_folder' => BASE . LOG,
|
|
'log_file_id' => $LOG_FILE_ID,
|
|
'log_per_date' => true,
|
|
]);
|
|
|
|
$PAGE_NAME = 'TEST CLASS: ERROR MSG';
|
|
print "<!DOCTYPE html>";
|
|
print "<html><head><title>" . $PAGE_NAME . "</title></head>";
|
|
print "<body>";
|
|
print '<div><a href="class_test.php">Class Test Master</a></div>';
|
|
print '<div><h1>' . $PAGE_NAME . '</h1></div>';
|
|
|
|
$em = new \CoreLibs\Logging\ErrorMessage($log);
|
|
|
|
print "Log ERROR: " . $log->prAr($em->getFlagLogError()) . "<br>";
|
|
|
|
print "FN: " . ml::fromName('Affe')->name . "<br>";
|
|
print "NU: " . ml::fromValue(100)->name . "<br>";
|
|
print "NU: " . ml::fromValue(1000)->name . "<br>";
|
|
print "OK.: " . ml::ok->name . "<br>";
|
|
print "OK^: " . ml::fromName('OK')->name . "<br>";
|
|
|
|
$em->setErrorMsg('123', 'error', 'msg this is bad, auto logged if debug');
|
|
$em->setErrorMsg('123', 'error', 'msg this is bad, auto logged if debug', 'target-id', 'other-style');
|
|
$em->setErrorMsg('123', 'error', 'msg this is bad, logged always', log_error:true);
|
|
$em->setErrorMsg('123', 'error', 'msg this is bad, never logged', log_error:false);
|
|
$em->setErrorMsg('500', 'warning', 'This is perhaps not super good, logged_always', log_warning:true);
|
|
$em->setErrorMsg('500', 'warning', 'This is perhaps not super good, logged_never', log_warning:false);
|
|
$em->setErrorMsg('1000', 'info', 'This is good');
|
|
$em->setErrorMsg('9999', 'abort', 'BAD: This is critical (abort)');
|
|
$em->setErrorMsg('10-1000', 'wrong', 'Wrong level: This is emergency');
|
|
// set some jump targets too
|
|
$em->setErrorMsg('100-1', 'error', 'Input wring', jump_target:['target' => 'foo-123', 'info' => 'Jump Target 123']);
|
|
$em->setErrorMsg('100-2', 'error', 'Input wring', jump_target:['target' => 'foo-123', 'info' => 'Jump Target 456']);
|
|
$em->setMessage('error', 'I have no id set', jump_target:['target' => 'bar-123', 'info' => 'Jump Bar']);
|
|
$em->setMessage('error', 'Jump empty', jump_target:['target' => 'bar-empty']);
|
|
|
|
print "ErrorsLast: <pre>" . $log->prAr($em->getLastErrorMsg()) . "</pre>";
|
|
print "ErrorsIds: <pre>" . $log->prAr($em->getErrorIds()) . "</pre>";
|
|
print "Errors: <pre>" . $log->prAr($em->getErrorMsg()) . "</pre>";
|
|
print "JumpTargets: <pre>" . $log->prAr($em->getJumpTarget()) . "</pre>";
|
|
|
|
print "IS info > ok: " . ml::fromName('info')->isHigherThan(ml::ok) . "<br>";
|
|
|
|
print "</body></html>";
|
|
|
|
$log->debug('[END]', '==========================================>');
|
|
|
|
// __END__
|