class Lumberjack::Formatter::StripFormatter
Format an object by calling ‘to_s` on it and stripping leading and trailing whitespace.
def call(obj)
def call(obj) obj.to_s.strip end
Format an object by calling ‘to_s` on it and stripping leading and trailing whitespace.
def call(obj) obj.to_s.strip end