debian-mirror-gitlab/lib/gitlab/database/load_balancing/logger.rb
2023-07-09 08:55:56 +05:30

15 lines
265 B
Ruby

# frozen_string_literal: true
module Gitlab
module Database
module LoadBalancing
class Logger < ::Gitlab::JsonLogger
exclude_context!
def self.file_name_noext
'database_load_balancing'
end
end
end
end
end