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