Method: Systemd::JournalEntry#method_missing

Defined in:
lib/systemd/journal_entry.rb

#method_missing(m, *args) ⇒ Object



43
44
45
46
47
# File 'lib/systemd/journal_entry.rb', line 43

def method_missing(m, *args)
  # not all journal entries will have all fields.  don't raise an error
  # unless the user passed arguments.
  super unless args.empty?
end