From cabbb0b8e3c82f1a03c044867f1dadce0af702d3 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Fri, 30 Aug 2024 10:45:19 +0800 Subject: [PATCH] Remove GraphQL debug output Let's get this ready to go since we don't want to accidentally leak private information. --- Library/Homebrew/utils/github/api.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Library/Homebrew/utils/github/api.rb b/Library/Homebrew/utils/github/api.rb index 71eda0b57a..e24b78af61 100644 --- a/Library/Homebrew/utils/github/api.rb +++ b/Library/Homebrew/utils/github/api.rb @@ -334,7 +334,6 @@ module GitHub def self.open_graphql(query, variables: nil, scopes: [].freeze, raise_errors: true) data = { query:, variables: } result = open_rest("#{API_URL}/graphql", scopes:, data:, request_method: "POST") - odebug "GraphQL Query Response", result if raise_errors if result["errors"].present?