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]) });