From a5236f6c2ff6d717ead3a5b9c3ea3d3ad9f45006 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 5 Mar 2019 07:45:55 -0700 Subject: [PATCH] v1.2.4: remove stray logs --- bin/keypairs.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/keypairs.js b/bin/keypairs.js index a26a457..ac93fe2 100755 --- a/bin/keypairs.js +++ b/bin/keypairs.js @@ -98,7 +98,6 @@ args.forEach(function (arg) { // Booleans if (-1 !== [ 'private', 'public', 'nocompact', 'nofetch', 'debug', 'overwrite' ].indexOf(arg)) { - console.log(arg); set(arg, true); return; } @@ -361,7 +360,6 @@ function readKeypair() { // omit the primary private key from the list of actual (or soon-to-be) files if (jwkopts.filename) { opts.names = opts.names.filter(function (name) { - console.log(jwkopts.filename, name.name); return name.name !== jwkopts.filename; }); }