1: <?php
2: /**
3: * Horde Log package
4: *
5: * This package is based on Zend_Log from the Zend Framework
6: * (http://framework.zend.com). Both that package and this
7: * one were written by Mike Naberezny and Chuck Hagenbuch.
8: *
9: * @category Horde
10: * @package Log
11: * @author Mike Naberezny <mike@maintainable.com>
12: * @author Chuck Hagenbuch <chuck@horde.org>
13: * @license http://www.horde.org/licenses/bsd BSD
14: */
15:
16: /**
17: * @category Horde
18: * @package Log
19: */
20: class Horde_Log {
21:
22: /** Emergency: system is unusable */
23: const EMERG = 0;
24:
25: /** Alert: action must be taken immediately */
26: const ALERT = 1;
27:
28: /** Critical: critical conditions */
29: const CRIT = 2;
30:
31: /** Error: error conditions */
32: const ERR = 3;
33:
34: /** Warning: warning conditions */
35: const WARN = 4;
36:
37: /** Notice: normal but significant condition */
38: const NOTICE = 5;
39:
40: /** Informational: informational messages */
41: const INFO = 6;
42:
43: /** Debug: debug-level messages */
44: const DEBUG = 7;
45:
46: }
47: