File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ var activityHeatMap = function(dbname) {
2828 url : config . corpus . url + "/" + activityDbname + "/_design/activities/_view/one-year-weekly?group=true"
2929 } ) . then ( function ( body ) {
3030 if ( body && body . rows ) {
31- console . log ( new Date ( ) + " responded with activity heat map " + body . rows . length + " for: " + activityDbname ) ;
31+ // console.log(new Date() + " responded with activity heat map " + body.rows.length + " for: " + activityDbname);
3232 return deferred . resolve ( body ) ;
3333 }
3434
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ var getUserMask = function getUserMask(username, next) {
7474 } ) ;
7575 promises . push ( corpusMask . fetch ( config . corpus . url + "/" + corpusConnection . dbname ) . then ( function ( ) {
7676 // Must prime the gravatar
77- console . log ( new Date ( ) + " Using connection from the corpus mask details" , corpusMask . connection . owner , corpusMask . connection . gravatar ) ;
77+ // console.log(new Date() + " Using connection from the corpus mask details", corpusMask.connection.owner, corpusMask.connection.gravatar);
7878 corpusMask . connection . title = corpusMask . connection . title ;
7979 corpusMask . connection . description = corpusMask . connection . description ;
8080 if ( ! corpusMask . connection . websiteUrl || corpusMask . connection . websiteUrl === config . public . url || corpusMask . connection . websiteUrl . indexOf ( "lingsync.org" ) === corpusMask . connection . websiteUrl . length - 12 ) {
@@ -89,7 +89,7 @@ var getUserMask = function getUserMask(username, next) {
8989 } ) ) ;
9090 } ) ;
9191
92- console . log ( new Date ( ) + " Waiting for " + promises . length + " to download details" ) ;
92+ // console.log(new Date() + " Waiting for " + promises.length + " to download details");
9393 Q . allSettled ( promises ) . done ( function ( results ) {
9494 // console.log(new Date() + " TODO Consider saving in the user to avoid making requests again ", results.length);
9595 console . log ( new Date ( ) + " userPrivate.userMask.corpora.titles " , userPrivate . userMask . corpora . map ( function ( mask ) {
You can’t perform that action at this time.
0 commit comments