debian-mirror-gitlab/lib/gitlab/database/load_balancing/logger.rb

16 lines
265 B
Ruby
Raw Normal View History

2021-09-04 01:27:46 +05:30
# frozen_string_literal: true
module Gitlab
module Database
module LoadBalancing
class Logger < ::Gitlab::JsonLogger
2023-07-09 08:55:56 +05:30
exclude_context!
2021-09-04 01:27:46 +05:30
def self.file_name_noext
'database_load_balancing'
end
end
end
end
end