Sha256: 3230dd4050f24ad4c844593af7ab94251d71df78fe3f4245bf2adaad18d4225a
Contents?: true
Size: 464 Bytes
Versions: 10
Compression:
Stored size: 464 Bytes
Contents
# frozen_string_literal: true module Gitlab module QA module SystemLogs module Finders module Rails class GraphqlLogFinder < JsonLogFinder def initialize(base_path, file_path = 'gitlab-rails/graphql_json.log') super(base_path, file_path) end def new_log(data) LogTypes::Rails::GraphqlLog.new(data) end end end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems