module Appsignal::Hooks::Helpers

def string_or_inspect(string_or_other)

def string_or_inspect(string_or_other)
  if string_or_other.is_a?(String)
    string_or_other
  else
    string_or_other.inspect
  end
end

def truncate(text)

def truncate(text)
  text.size > 200 ? "#{text[0...197]}..." : text
end