Sha256: e1abc4992d0de70743f6e67b97831a2624ae0d277fbbf92f118b42b3cb379808
Contents?: true
Size: 480 Bytes
Versions: 74
Compression:
Stored size: 480 Bytes
Contents
# frozen_string_literal: true module GitlabQuality module TestTooling 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
74 entries across 74 versions & 1 rubygems