class Sawmill::Entry::UnknownData

A log entry that doesn’t conform to sawmill’s format.

Attributes

line[R]

The line in the logfile as a raw string

Public Class Methods

new(line_) click to toggle source
# File lib/sawmill/entry.rb, line 50
def initialize(line_)
  @line = line_.to_s
end

Public Instance Methods

type() click to toggle source

Returns :unknown_data

# File lib/sawmill/entry.rb, line 56
def type; :unknown_data end