Skip to content

Commit

Permalink
Lower log level of some debug prints.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrstegeman committed Nov 12, 2019
1 parent 01274fd commit 3e67d13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/certificate-manager.js
Expand Up @@ -314,9 +314,9 @@ async function renew(server) {
});

if (DEBUG) {
console.log('Private Key:', key.toString());
console.log('CSR:', csr.toString());
console.log('Certificate(s):', cert.toString());
console.debug('Private Key:', key.toString());
console.debug('CSR:', csr.toString());
console.debug('Certificate(s):', cert.toString());
} else {
console.log('Received certificate from Let\'s Encrypt');
}
Expand Down

0 comments on commit 3e67d13

Please sign in to comment.