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