This file is indexed.

/usr/share/php/Horde/Log/Handler/Scribe.php is in php-horde-log 2.1.3-1ubuntu1.

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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
/**
 * Horde Log package
 *
 * @author     Mike Naberezny <mike@maintainable.com>
 * @author     Chuck Hagenbuch <chuck@horde.org>
 * @category   Horde
 * @license    http://www.horde.org/licenses/bsd BSD
 * @package    Log
 * @subpackage Handlers
 */

/**
 * @author     Mike Naberezny <mike@maintainable.com>
 * @author     Chuck Hagenbuch <chuck@horde.org>
 * @category   Horde
 * @license    http://www.horde.org/licenses/bsd BSD
 * @package    Log
 * @subpackage Handlers
 */
class Horde_Log_Handler_Scribe extends Horde_Log_Handler_Base
{
    /**
     * Scribe client.
     *
     * @var Horde_Scribe_Client
     */
    protected $_scribe;

    /**
     * Formats the log message before writing.
     *
     * @var Horde_Log_Formatter
     */
    protected $_formatter;

    /**
     * Options to be set by setOption().
     *
     * @var array
     */
    protected $_options = array(
        'addNewline' => false,
        'category'   => 'default',
        'ident' => ''
    );

    /**
     * Constructor.
     *
     * @param Horde_Scribe_Client $scribe     Scribe client.
     * @param Horde_Log_Formatter $formatter  Log formatter.
     */
    public function __construct(Horde_Scribe_Client $scribe,
                                Horde_Log_Formatter $formatter = null)
    {
        $this->_formatter = is_null($formatter)
            ? new Horde_Log_Formatter_Simple()
            : $formatter;
        $this->_scribe = $scribe;
    }

    /**
     * Write a message to the log.
     *
     * @param array $event  Log event.
     *
     * @return boolean  True.
     */
    public function write($event)
    {
        if (!empty($this->_options['ident'])) {
            $event['message'] = $this->_options['ident'] . ' ' . $event['message'];
        }

        $category = isset($event['category'])
            ? $event['category']
            : $this->_options['category'];

        $message = $this->_formatter->format($event);
        if (!$this->_options['addNewline']) {
            $message = rtrim($message);
        }

        $this->_scribe->log($category, $message);

        return true;
    }

}