0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-02 18:59:04 +02:00

remove log spam

This commit is contained in:
Matthew Hodgson 2014-08-16 22:02:52 +01:00
parent fe25e65f3f
commit f1d140eea8

View file

@ -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]);
};
}
});