<?php
/**
* Horde Log package
*
* This package is based on Zend_Log from the Zend Framework
* (http://framework.zend.com). Both that package and this
* one were written by Mike Naberezny and Chuck Hagenbuch.
*
* @category Horde
* @package Horde_Log
* @author Mike Naberezny <hide@address.com>
* @author Chuck Hagenbuch <hide@address.com>
* @license http://opensource.org/licenses/bsd-license.php BSD
*/
/**
* @category Horde
* @package Horde_Log
*/
class Horde_Log {
/** Emergency: system is unusable */
const EMERG = 0;
/** Alert: action must be taken immediately */
const ALERT = 1;
/** Critical: critical conditions */
const CRIT = 2;
/** Error: error conditions */
const ERR = 3;
/** Warning: warning conditions */
const WARN = 4;
/** Notice: normal but significant condition */
const NOTICE = 5;
/** Informational: informational messages */
const INFO = 6;
/** Debug: debug-level messages */
const DEBUG = 7;
}