LogLevel.php 336 B

123456789101112131415161718
  1. <?php
  2. namespace Psr\Log;
  3. /**
  4. * Describes log levels.
  5. */
  6. class LogLevel
  7. {
  8. const EMERGENCY = 'emergency';
  9. const ALERT = 'alert';
  10. const CRITICAL = 'critical';
  11. const ERROR = 'error';
  12. const WARNING = 'warning';
  13. const NOTICE = 'notice';
  14. const INFO = 'info';
  15. const DEBUG = 'debug';
  16. }