debian-mirror-gitlab/lib/gitlab/app_logger.rb

14 lines
230 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
module Gitlab
2020-03-13 15:44:24 +05:30
class AppLogger < Gitlab::MultiDestinationLogger
def self.loggers
2023-07-09 08:55:56 +05:30
[Gitlab::AppJsonLogger]
2014-09-02 18:07:02 +05:30
end
2020-03-13 15:44:24 +05:30
def self.primary_logger
2023-06-20 00:43:36 +05:30
Gitlab::AppJsonLogger
2014-09-02 18:07:02 +05:30
end
end
end