This file is indexed.

/usr/lib/ruby/vendor_ruby/lumberjack/log_entry.rb is in ruby-lumberjack 1.0.13-1.

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
# frozen_string_literals: true

module Lumberjack
  # An entry in a log is a data structure that captures the log message as well as
  # information about the system that logged the message.
  class LogEntry
    attr_accessor :time, :message, :severity, :progname, :pid, :unit_of_work_id
    
    TIME_FORMAT = "%Y-%m-%dT%H:%M:%S".freeze
    
    def initialize(time, severity, message, progname, pid, unit_of_work_id)
      @time = time
      @severity = (severity.is_a?(Integer) ? severity : Severity.label_to_level(severity))
      @message = message
      @progname = progname
      @pid = pid
      @unit_of_work_id = unit_of_work_id
    end
    
    def severity_label
      Severity.level_to_label(severity)
    end
    
    def to_s
      buf = "[#{time.strftime(TIME_FORMAT)}.#{(time.usec / 1000.0).round.to_s.rjust(3, '0')} #{severity_label} #{progname}(#{pid})"
      if unit_of_work_id
        buf << " #"
        buf << unit_of_work_id
      end
      buf << "] "
      buf << message
    end
    
    def inspect
      to_s
    end
  end
end