Skip to content

Commit

Permalink
Don't log password (fix #90).
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed May 16, 2013
1 parent 9ca4bc9 commit 46eef46
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/UA.js
Original file line number Diff line number Diff line change
Expand Up @@ -798,6 +798,9 @@ UA.prototype.loadConfig = function(configuration) {
case 'registrar_server':
console.log('· ' + parameter + ': ' + settings[parameter]);
break;
case 'password':
console.log('· ' + parameter + ': ' + 'NOT SHOWN');
break;
default:
console.log('· ' + parameter + ': ' + window.JSON.stringify(settings[parameter]));
}
Expand Down

0 comments on commit 46eef46

Please sign in to comment.