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