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