From bbc8d3332f9a4ced79c1863e9acc597d83b4bad8 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Fri, 8 Mar 2024 16:35:24 -0800 Subject: [PATCH] avoid logging auth data --- lib/user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/user.js b/lib/user.js index be2cf46..208dd7b 100644 --- a/lib/user.js +++ b/lib/user.js @@ -15,7 +15,7 @@ class User { } async authenticate(authTry) { - if (this.debug) console.log(authTry) + // if (this.debug) console.log(authTry) let [username, groupName] = authTry.username.split('@') if (!groupName) groupName = this.cfg.group ?? 'NicTool'