Remove log statements

This commit is contained in:
Yarmo Mackenbach 2020-06-29 10:51:15 +02:00
parent 60ef35fd79
commit d8952c8ea3

View file

@ -159,7 +159,6 @@ async function verifyProofs(opts) {
} }
// One-line sorting function (order verifications by type) // One-line sorting function (order verifications by type)
console.log(keyData.notations);
verifications = verifications.sort((a,b) => (a.type > b.type) ? 1 : ((b.type > a.type) ? -1 : 0)); verifications = verifications.sort((a,b) => (a.type > b.type) ? 1 : ((b.type > a.type) ? -1 : 0));
// Generate feedback // Generate feedback
@ -196,7 +195,6 @@ async function displayProfile(opts) {
} }
// One-line sorting function (order verifications by type) // One-line sorting function (order verifications by type)
console.log(keyData.notations);
verifications = verifications.sort((a,b) => (a.type > b.type) ? 1 : ((b.type > a.type) ? -1 : 0)); verifications = verifications.sort((a,b) => (a.type > b.type) ? 1 : ((b.type > a.type) ? -1 : 0));
// Generate feedback // Generate feedback