summaryrefslogtreecommitdiff
path: root/lib/gitlab/plugin_logger.rb
blob: df3bd56fd2f1ca6f1f92c9c9b9beb53989978c1a (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Gitlab
  class PluginLogger < Gitlab::Logger
    def self.file_name_noext
      'plugin'
    end
  end
end