From bb6fb0c887f3bb05b0ffb94cc3dc241217518597 Mon Sep 17 00:00:00 2001 From: Brian Date: Mon, 27 Aug 2018 14:08:04 -0400 Subject: [PATCH] Fix --- bin/alks-developer-info | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/alks-developer-info b/bin/alks-developer-info index 705140e8..261d1b21 100755 --- a/bin/alks-developer-info +++ b/bin/alks-developer-info @@ -58,7 +58,7 @@ function(err, results){ var password = !_.isEmpty(results.password) ? '**********' : clc.red('NOT SET'); table.push(['Password', password]); -console.log(JSON.stringify(results, null, 4)); + var token = !_.isEmpty(results.token) ? results.token.substring(0,4) + '**********' : clc.red('NOT SET'); table.push(['2FA Token', token]);