diff --git a/packages/sasl/index.js b/packages/sasl/index.js index afcf96f4..d367d58e 100644 --- a/packages/sasl/index.js +++ b/packages/sasl/index.js @@ -9,16 +9,11 @@ const SASLFactory = require("saslmechanisms"); const NS = "urn:ietf:params:xml:ns:xmpp-sasl"; -console.log("foobar"); function getMechanismNames(features) { - console.log("lol"); return features .getChild("mechanisms", NS) .getChildElements() - .map((el) => { - console.log(el, typeof el); - return el.text(); - }); + .map((el) => el.text()); } async function authenticate(SASL, entity, mechname, credentials) {