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: c4f6ec3e21d50e7f24247b657551cef2ef187d39 (plain)
1
2
3
4
5
6
7
module Gitlab
  class PluginLogger < Gitlab::Logger
    def self.file_name_noext
      'plugin'
    end
  end
end