From 0d4c606735e557d89a1819f617921032471e9b88 Mon Sep 17 00:00:00 2001 From: Manfred Cheung Date: Wed, 13 Mar 2024 17:16:20 -0400 Subject: [PATCH] remove cred debug statements --- projects/client-api/src/index.js | 4 ++-- projects/node-api/src/index.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/projects/client-api/src/index.js b/projects/client-api/src/index.js index 5a8728f..dbacd16 100644 --- a/projects/client-api/src/index.js +++ b/projects/client-api/src/index.js @@ -45,7 +45,7 @@ export class Client extends ClientBase { clientProtocolHostname, version ) { - console.debug('new client', { username }, { password }, { protocol }, { host }, { clientProtocolHostname }, { version }); + // console.debug('new client', { username }, { password }, { protocol }, { host }, { clientProtocolHostname }, { version }); super( username, password, org, protocol, host, clientProtocolHostname, @@ -83,7 +83,7 @@ export class ClientPkey extends ClientPkeyBase { clientProtocolHostname, version ) { - console.debug('new client', { personalKeyId }, { personalKeySecret }, { protocol }, { host }, { clientProtocolHostname }, { version }); + // console.debug('new client', { personalKeyId }, { personalKeySecret }, { protocol }, { host }, { clientProtocolHostname }, { version }); super( personalKeyId, personalKeySecret, org, protocol, host, clientProtocolHostname, diff --git a/projects/node-api/src/index.ts b/projects/node-api/src/index.ts index 3e864f2..fb4ed33 100644 --- a/projects/node-api/src/index.ts +++ b/projects/node-api/src/index.ts @@ -41,7 +41,7 @@ export class Client extends ClientBase { clientProtocolHostname?: string, version: string = VERSION ) { - console.debug('new client', { username }, { password }, { protocol }, { host }, { clientProtocolHostname }, { version }); + // console.debug('new client', { username }, { password }, { protocol }, { host }, { clientProtocolHostname }, { version }); super( username, password, org, protocol, host, clientProtocolHostname, @@ -81,7 +81,7 @@ export class ClientPkey extends ClientPkeyBase { clientProtocolHostname?: string, version: string = VERSION ) { - console.debug('new client', { personalKeyId }, { personalKeySecret }, { protocol }, { host }, { clientProtocolHostname }, { version }); + // console.debug('new client', { personalKeyId }, { personalKeySecret }, { protocol }, { host }, { clientProtocolHostname }, { version }); super( personalKeyId, personalKeySecret, org, protocol, host, clientProtocolHostname,