1 files changed, 2 insertions, 2 deletions
diff --git a/webclient/app.js b/webclient/app.js
index a6668da6eb..c4794e6abc 100644
--- a/webclient/app.js
+++ b/webclient/app.js
@@ -134,11 +134,11 @@ matrixWebClient
// invocation but keep track of duplicates incrementally somewhere
angular.forEach(displayNames, function(value, key) {
if (value.length > 1) {
- console.log(key + ": " + value);
+ // console.log(key + ": " + value);
for (i=0; i < value.length; i++) {
var v = value[i];
members[v].displayname += " (" + v + ")";
- console.log(v + " " + members[v]);
+ // console.log(v + " " + members[v]);
};
}
});
|