From 66a9b6a4b57f476db4b34330954b4c4623c33474 Mon Sep 17 00:00:00 2001 From: Roy Crihfield Date: Fri, 20 Oct 2023 01:47:02 -0500 Subject: [PATCH] rm debugs --- src/registry-client.ts | 2 -- src/util.ts | 1 - 2 files changed, 3 deletions(-) diff --git a/src/registry-client.ts b/src/registry-client.ts index 41c9fa7..5772348 100644 --- a/src/registry-client.ts +++ b/src/registry-client.ts @@ -256,11 +256,9 @@ export class RegistryClient { attributes: Util.toGQLAttributes(attributes), all }; - console.debug("[DEBUG] variables", variables); let result = (await this._graph(query)(variables))['queryRecords']; result = RegistryClient.prepareAttributes('attributes')(result); - console.debug("[DEBUG] prepared result", result); return result; } diff --git a/src/util.ts b/src/util.ts index d42b057..93f6ce6 100644 --- a/src/util.ts +++ b/src/util.ts @@ -33,7 +33,6 @@ export class Util { * Marshal object into gql 'attributes' variable. */ static toGQLAttributes(obj: any) { - console.log("[DEBUG] toGQLAttributes", obj); const vars: any[] = []; Object.keys(obj).forEach(key => { vars.push({ key, value: this.toGQLValue(obj[key]) });