diff --git a/app/services/user.js b/app/services/user.js index 6e0afb8..c41ba30 100644 --- a/app/services/user.js +++ b/app/services/user.js @@ -349,7 +349,7 @@ class UserService extends SiteService { async handleLocalLogin (username, password, done) { const now = new Date(); - this.log.info('handleLocalLogin', { username, password }); + this.log.info('handleLocalLogin', { username }); try { const user = await this.authenticate({ username, password }, { adminRequired: false }); await this.startUserSession(user, now);