Welcome to mirror list, hosted at ThFree Co, Russian Federation.

file_hook_logger.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d6a650161f8f3ebef2ebc8ca726949f8f76259a (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Gitlab
  class FileHookLogger < Gitlab::Logger
    def self.file_name_noext
      'file_hook'
    end
  end
end