Skip to content

Commit 8322243

Browse files
author
VarmaSANJAY
committed
Merge branch 'topic-performance' of https://github.com/RLOpenCatalyst/core into topic-performance
2 parents 7ec25c9 + b98551b commit 8322243

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

server/app/lib/utils/authUtil.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var AuthUtil = function(){
4040

4141
// Compare password with hashed password
4242
this.checkPassword = function(password,hashedPassword,callback){
43-
logger.debug("password: ",password,hashedPassword);
43+
//logger.debug("password: ",password,hashedPassword);
4444
bcrypt.compare(password,hashedPassword,function(err,isMatched){
4545
if(err){
4646
logger.debug("Something wrong while matching password.");

server/app/routes/v1.0/routes_provider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ module.exports.setRoutes = function (app, sessionVerificationFunc) {
5959
res.status(500).send(errorResponses.db.error);
6060
return;
6161
}
62-
logger.debug("Provider list: ", JSON.stringify(providers));
62+
// logger.debug("Provider list: ", JSON.stringify(providers));
6363
if (providers) {
6464
var providerList = [];
6565
var count = 0;

0 commit comments

Comments
 (0)