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

plugin_logger.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a106a2677ed3559efeaa9771bf499e4264c3f3be (plain)
1
2
3
4
5
6
7
8
module Gitlab
  class PluginLogger < Gitlab::Logger
    def self.file_name_noext
      'plugin'
    end
  end
end