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