summary refs log tree commit diff
path: root/webclient/app.js
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@matrix.org>2014-08-16 22:02:52 +0100
committerMatthew Hodgson <matthew@matrix.org>2014-08-16 22:02:52 +0100
commitf1d140eea8536023d92eedd31fee4bf8984b5638 (patch)
tree62b027ffcd46ee7e0ad42dc568e76ad42b359935 /webclient/app.js
parentdisambiguate identical displaynames (diff)
downloadsynapse-f1d140eea8536023d92eedd31fee4bf8984b5638.tar.xz
remove log spam
Diffstat (limited to 'webclient/app.js')
-rw-r--r--webclient/app.js4
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]);
                     };
                 }
             });