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