Sha256: 776fcff4380f841d4897cf71f7522486e4dc59dd4eb09697d0b5a46c810d9bd4
Contents?: true
Size: 492 Bytes
Versions: 78
Compression:
Stored size: 492 Bytes
Contents
# frozen_string_literal: true module GitlabQuality module TestTooling module SystemLogs module Finders module Rails class ApplicationLogFinder < JsonLogFinder def initialize(base_path, file_path = 'gitlab-rails/application_json.log') super(base_path, file_path) end def new_log(data) LogTypes::Rails::ApplicationLog.new(data) end end end end end end end
Version data entries
78 entries across 78 versions & 1 rubygems