9 lines
150 B
Ruby
9 lines
150 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
class FileHookLogger < Gitlab::Logger
|
|
def self.file_name_noext
|
|
'file_hook'
|
|
end
|
|
end
|
|
end
|