Current File : /home/digitaw/www/wp-content/plugins/simple-history/inc/deprecated/class-simpleloggerloglevels.php
<?php
// phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound

/**
 * Log levels.
 *
 * @deprecated, use Simple_History\Log_Levels instead.
 */
class SimpleLoggerLogLevels {
	public const EMERGENCY = 'emergency';
	public const ALERT     = 'alert';
	public const CRITICAL  = 'critical';
	public const ERROR     = 'error';
	public const WARNING   = 'warning';
	public const NOTICE    = 'notice';
	public const INFO      = 'info';
	public const DEBUG     = 'debug';
}