fixed bugs for setup, added messages table

This commit is contained in:
2025-10-08 23:34:17 -07:00
parent 344786ee95
commit fb5407a60b
3 changed files with 33 additions and 3 deletions

View File

@@ -42,6 +42,11 @@ class Logger {
$this->log('WARNING', $msg);
}
// Alias
public function warn(string $msg): void {
$this->log('WARNING', $msg);
}
public function error(string $msg): void {
$this->log('ERROR', $msg);
}