Skip to content

Commit

Permalink
fix: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
danielfsousa committed Oct 4, 2019
1 parent de31e46 commit 5efa352
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/dotenv-azure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export default class DotenvAzure {
{} as VariablesObject
)
}
console.log('appconfig', vars)

return vars
}

Expand All @@ -132,7 +132,6 @@ export default class DotenvAzure {
const keyVaultClient = this.getKeyVaultClient(credentials, keyVaultUrl.origin)
const response = await keyVaultClient.getSecret(secretName, { version: secretVersion })
secrets[key] = response.value || ''
console.log('kv', secretName, response.value)
}

await Promise.all(Object.entries(vars).map(([key, val]) => limit(() => getSecret(key, val))))
Expand Down

0 comments on commit 5efa352

Please sign in to comment.