fix: Remove CA Certificate preview log

Remove console log for CA Certificate preview.
This commit is contained in:
ilario-entregas 2026-04-02 09:14:35 -03:00 committed by GitHub
parent fe4cd4beef
commit 6a9476a1b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,7 +14,6 @@ const clientKeyRaw = `${process.env.VAULT_CLIENT_KEY}`;
(async () => {
try {
var caCertificate = Buffer.from(caCertificateRaw, 'base64').toString();
console.log('CA Certificate preview:', caCertificate.substring(0, 50))
if (caCertificate == null) {
throw Error("VAULTCA env not set.")
}