This file is indexed.

/usr/lib/ruby/vendor_ruby/log4r/rdoc/scribeoutputter is in ruby-log4r 1.1.10-3.

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
= ScribeOutputter

A ScribeOutputter transforms a Log4r::LogEvent into an event passed to Scribe. The user can configure the outputter with
the host and port of the scribe scribe server.

== Usage

To use,
  <tt>require 'log4r'</tt>

An example,

  require 'log4r'

  logger = Log4r::ScribeOutputter.new('name', '127.0.0.1', 1463)
  logger.debug("Hello World")