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: c5e69172016b02f70f72d29de4ec7870d16c18b1 (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
      'plugin'
    end
  end
end