Skip to content

Commit

Permalink
Fix typo in log message
Browse files Browse the repository at this point in the history
  • Loading branch information
yurem committed Apr 11, 2018
1 parent c90fee9 commit 1d49b2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server/auth/getConsumerDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ function getTicketAndConfig(data) {
}

global.UMAConfig = data;
logger.log('info', 'Passprot config were received');
logger.sendMQMessage('info: Passprot config were received');
logger.log('info', 'Passport config were received');
logger.sendMQMessage('info: Passport config were received');
resolve(global.UMAConfig.token_endpoint);
})
.catch(function (error) {
Expand Down Expand Up @@ -227,4 +227,4 @@ exports.getDetailsAndConfigureStrategies = function (callback) {
.catch(function (error) {
callback(error, null);
});
};
};

0 comments on commit 1d49b2d

Please sign in to comment.