xref: /plugin/smtp/vendor/psr/log/Psr/Log/LogLevel.php (revision ee5c02056e482f4a07fb4b075ec45c4dfd3de0e8)
1*ee5c0205SAndreas Gohr<?php
2*ee5c0205SAndreas Gohr
3*ee5c0205SAndreas Gohrnamespace Psr\Log;
4*ee5c0205SAndreas Gohr
5*ee5c0205SAndreas Gohr/**
6*ee5c0205SAndreas Gohr * Describes log levels.
7*ee5c0205SAndreas Gohr */
8*ee5c0205SAndreas Gohrclass LogLevel
9*ee5c0205SAndreas Gohr{
10*ee5c0205SAndreas Gohr    const EMERGENCY = 'emergency';
11*ee5c0205SAndreas Gohr    const ALERT     = 'alert';
12*ee5c0205SAndreas Gohr    const CRITICAL  = 'critical';
13*ee5c0205SAndreas Gohr    const ERROR     = 'error';
14*ee5c0205SAndreas Gohr    const WARNING   = 'warning';
15*ee5c0205SAndreas Gohr    const NOTICE    = 'notice';
16*ee5c0205SAndreas Gohr    const INFO      = 'info';
17*ee5c0205SAndreas Gohr    const DEBUG     = 'debug';
18*ee5c0205SAndreas Gohr}
19