lithium\analysis\logger\adapter\Syslog::$_priorities

protected property

Array that maps Logger message priority names to syslog-compatible priority constants.

Source

	protected $_priorities = [
		'emergency' => LOG_EMERG,
		'alert'     => LOG_ALERT,
		'critical'  => LOG_CRIT,
		'error'     => LOG_ERR,
		'warning'   => LOG_WARNING,
		'notice'    => LOG_NOTICE,
		'info'      => LOG_INFO,
		'debug'     => LOG_DEBUG
	];