Skip to content

Commit

Permalink
Disable username req logging
Browse files Browse the repository at this point in the history
  • Loading branch information
btouellette committed Aug 10, 2020
1 parent f748c69 commit 1185d9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module.exports = function(app, passport, client) {

// process the username form
app.post('/username', isLoggedIn, function(req, res) {
console.log(req.headers['x-request-id'] + ' - selecting new username - ' + stringify(req));
//console.log(req.headers['x-request-id'] + ' - selecting new username - ' + stringify(req));
if(!req.user.username) {
var username = req.body.username.toLowerCase();
console.log(req.headers['x-request-id'] + ' - testing valid');
Expand Down

0 comments on commit 1185d9a

Please sign in to comment.