class Syslog::Parser::InternalParser

Public Class Methods

new(options={}) click to toggle source
Calls superclass method
# File lib/syslog/parser/internal_parser.rb, line 6
def initialize(options={})
  super()

  @allow_missing_structured_data =
    options.fetch(:allow_missing_structured_data, false)
end