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