Skip to content

Commit

Permalink
remove cred debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
mj3cheun committed Mar 13, 2024
1 parent 90391c5 commit 0d4c606
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions projects/client-api/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions projects/node-api/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 0d4c606

Please sign in to comment.