mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00

- Modify GraphqlLogger to subclass JsonLogger - Replace the single-line analyser with one that can log all the GraphQL query related information in one place. - Implement analyzer behavior with spec
10 lines
156 B
Ruby
10 lines
156 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
class GraphqlLogger < Gitlab::JsonLogger
|
|
def self.file_name_noext
|
|
'graphql_json'
|
|
end
|
|
end
|
|
end
|