class Sentry::Redis

def record_breadcrumb

def record_breadcrumb
  return unless Sentry.initialized?
  return unless Sentry.configuration.breadcrumbs_logger.include?(LOGGER_NAME)
  Sentry.add_breadcrumb(
    Sentry::Breadcrumb.new(
      level: :info,
      category: OP_NAME,
      type: :info,
      data: {
        commands: parsed_commands,
        server: server_description
      }
    )
  )
end