Sha256: 0053ccb4ddb1c1b0c9a2ebae3112f6982e886ed6f084a1d61541caf846fa9cc9
Contents?: true
Size: 476 Bytes
Versions: 10
Compression:
Stored size: 476 Bytes
Contents
# frozen_string_literal: true module Gitlab module QA 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
10 entries across 10 versions & 1 rubygems