PHP_SMART_HOME_V3/app/models/types/LogRecordTypes.php

19 lines
292 B
PHP
Raw Normal View History

2020-07-28 07:02:46 +00:00
<?php
class LogRecordTypes{
const ERROR = [
'level' => 0,
'identifier' => 'error',
];
const WARNING = [
'level' => 1,
'identifier' =>'warning',
];
2020-07-30 14:31:25 +00:00
const EXEPTION = [
2020-07-28 07:02:46 +00:00
'level' => 2,
2020-07-30 14:31:25 +00:00
'identifier' => 'exeption',
];
const INFO = [
'level' => 3,
2020-07-28 07:02:46 +00:00
'identifier' => 'info',
];
}