summaryrefslogtreecommitdiff
path: root/src/Level.php
blob: 56cb05c37c1cfe8f8ab3c6f414be8ad599f56653 (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";
}