mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-21 23:43:41 +00:00
14 lines
230 B
Ruby
14 lines
230 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
class AppLogger < Gitlab::MultiDestinationLogger
|
|
def self.loggers
|
|
[Gitlab::AppJsonLogger]
|
|
end
|
|
|
|
def self.primary_logger
|
|
Gitlab::AppJsonLogger
|
|
end
|
|
end
|
|
end
|