mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-10 03:00:46 +00:00
12 lines
199 B
Ruby
12 lines
199 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module PerformanceBar
|
|
class Logger < ::Gitlab::JsonLogger
|
|
def self.file_name_noext
|
|
'performance_bar_json'
|
|
end
|
|
end
|
|
end
|
|
end
|