summaryrefslogtreecommitdiff
path: root/src/Level.php
blob: 5e573bc2a7fe936a44837200a92d34405fcee6f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

namespace Asko\Loggr;

/**
 * @author Asko Nõmm <asko@faultd.com>
 */
enum Level: string
{
    case Emergency = "EMERGENCY";
    case Alert = "ALERT";
    case Critical = "CRITICAL";
    case Error = "ERROR";
    case Warning = "WARNING";
    case Notice = "NOTICE";
    case Info = "INFO";
    case Debug = "DEBUG";
}