9 lines
145 B
Ruby
9 lines
145 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
class PluginLogger < Gitlab::Logger
|
|
def self.file_name_noext
|
|
'plugin'
|
|
end
|
|
end
|
|
end
|