mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-01 16:46:16 +00:00
12 lines
176 B
Ruby
12 lines
176 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
class BackupLogger < Gitlab::JsonLogger
|
|
exclude_context!
|
|
|
|
def self.file_name_noext
|
|
'backup_json'
|
|
end
|
|
end
|
|
end
|