Skip to content

Commit 4b4bc3a

Browse files
committed
Eliminate logging full key entries to the standard output
1 parent bfbb633 commit 4b4bc3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/keystore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ module.exports = (debugNamePrefix, signingKeyPassphrases, keystoreReader, refres
7979
const maxTimestamp = now - (20 * 60) // the youngest key to use
8080
const allKeys = Array.from(currentKeys)
8181
let allowedKeys = allKeys.filter(keyEntry => keyEntry[1].timestamp < maxTimestamp)
82-
debug('allowedKeys: ', allowedKeys)
82+
debug('allowedKeys: ', allowedKeys.map(keyEntry => keyEntry[0]))
8383
if (allowedKeys.length === 0) {
8484
allowedKeys = allKeys
8585
}

0 commit comments

Comments
 (0)