LogLevel.php 362 B

12345678910111213141516
  1. <?php if ( ! defined( 'ABSPATH' ) ) exit;
  2. /**
  3. * Describes log levels
  4. */
  5. class NF_Abstracts_LogLevel
  6. {
  7. const EMERGENCY = 'emergency';
  8. const ALERT = 'alert';
  9. const CRITICAL = 'critical';
  10. const ERROR = 'error';
  11. const WARNING = 'warning';
  12. const NOTICE = 'notice';
  13. const INFO = 'info';
  14. const DEBUG = 'debug';
  15. }