This file is indexed.

/usr/share/php/Horde/Log.php is in php-horde-log 2.2.0-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?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  Log
 * @author   Mike Naberezny <mike@maintainable.com>
 * @author   Chuck Hagenbuch <chuck@horde.org>
 * @license  http://www.horde.org/licenses/bsd BSD
 */

/**
 * @category Horde
 * @package  Log
 */
class Horde_Log
{
    /** Emergency: system is unusable */
    const EMERG = 0;

    /** Emergency: system is unusable */
    const EMERGENCY = 0;

    /** Alert: action must be taken immediately */
    const ALERT = 1;

    /** Critical: critical conditions */
    const CRIT = 2;

    /** Critical: critical conditions */
    const CRITICAL = 2;

    /** Error: error conditions */
    const ERR = 3;

    /** Error: error conditions */
    const ERROR = 3;

    /** Warning: warning conditions */
    const WARN = 4;

    /** Warning: warning conditions */
    const WARNING = 4;

    /** Notice: normal but significant condition */
    const NOTICE = 5;

    /** Informational: informational messages */
    const INFO = 6;

    /** Informational: informational messages */
    const INFORMATION = 6;

    /** Informational: informational messages */
    const INFORMATIONAL = 6;

    /** Debug: debug-level messages */
    const DEBUG = 7;
}