2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module BackgroundMigration
|
|
|
|
# Logger that can be used for migrations logging
|
|
|
|
class Logger < ::Gitlab::JsonLogger
|
2023-07-09 08:55:56 +05:30
|
|
|
exclude_context!
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
def self.file_name_noext
|
|
|
|
'migrations'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|