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

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