class SemanticLogger::Log

def file_name_and_line(short_name = false)

in either the backtrace or exception
Returns [String, String] the file_name and line_number from the backtrace supplied
def file_name_and_line(short_name = false)
  stack = backtrace || exception&.backtrace
  extract_file_and_line(stack, short_name)
end