PHP_SMART_HOME_V3/app/models/types/LogRecordTypes.php

15 lines
222 B
PHP

<?php
class LogRecordTypes{
const ERROR = [
'level' => 0,
'identifier' => 'error',
];
const WARNING = [
'level' => 1,
'identifier' =>'warning',
];
const INFO = [
'level' => 2,
'identifier' => 'info',
];
}