class Lumberjack::Formatter::StringFormatter
Format an object by calling to_s
on it.
Public Instance Methods
Source
# File lib/lumberjack/formatter/string_formatter.rb, line 7 def call(obj) obj.to_s end
Format an object by calling to_s
on it.
# File lib/lumberjack/formatter/string_formatter.rb, line 7 def call(obj) obj.to_s end