This file is indexed.

/usr/share/php/Horde/Log/Filter/ExactLevel.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
<?php
/**
 * Horde Log package
 *
 * @author     Bryan Alves <bryanalves@gmail.com>
 * @category   Horde
 * @license    http://www.horde.org/licenses/bsd BSD
 * @package    Log
 * @subpackage Filters
 */

/**
 * @author     Bryan Alves <bryanalves@gmail.com>
 * @category   Horde
 * @license    http://www.horde.org/licenses/bsd BSD
 * @package    Log
 * @subpackage Filters
 */
class Horde_Log_Filter_ExactLevel implements Horde_Log_Filter
{
    /**
     * @var integer
     */
    protected $_level;

    /**
     * Filter out any log messages not equal to $level.
     *
     * @param  integer  $level  Log level to pass through the filter
     */
    public function __construct($level)
    {
        if (!is_integer($level)) {
            throw new Horde_Log_Exception('Level must be an integer');
        }

        $this->_level = $level;
    }

    /**
     * Returns TRUE to accept the message, FALSE to block it.
     *
     * @param  array    $event    Log event
     * @return boolean            accepted?
     */
    public function accept($event)
    {
        return $event['level'] == $this->_level;
    }
}